dep: package-update

This commit is contained in:
2023-03-19 17:45:17 +09:00
parent 2245383d9e
commit 49f2f85f79
5 changed files with 1147 additions and 1009 deletions
-14
View File
@@ -1,14 +0,0 @@
declare module 'vue-multiselect' {
// Type definitions for Vue-Multislect 2.1.0
// Definitions by: Akshay Jat https://github.com/akki-jat
import { VueConstructor } from 'vue';
declare class Multiselect extends VueConstructor { }
declare class multiselectMixin extends VueConstructor { }
declare class pointerMixin extends VueConstructor { }
export default Multiselect;
export { Multiselect, multiselectMixin, pointerMixin };
}
+1121 -967
View File
File diff suppressed because it is too large Load Diff
+24 -24
View File
@@ -50,37 +50,37 @@
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vue/compiler-sfc": "^3.2.37",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^9.1.1",
"ag-grid-community": "^28.1.1",
"ag-grid-vue3": "^28.1.1",
"async-validator": "^4.2.5",
"autoprefixer": "^10.4.8",
"axios": "^0.27.2",
"autoprefixer": "^10.4.14",
"axios": "^1.3.4",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-modern-browsers": "^15.0.2",
"binary-search": "^1.3.6",
"bootstrap": "^5.2.0",
"bootstrap": "^5.2.3",
"bootstrap-vue-next": "^0.7.3",
"bootswatch": "^5.2.0",
"bootswatch": "^5.2.3",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"chai": "^4.3.7",
"chai-bytes": "^0.1.2",
"clean-terminal-webpack-plugin": "^3.0.0",
"core-js": "^3.25.0",
"core-js": "^3.29.1",
"css-color-names": "^1.0.1",
"css-loader": "^6.7.1",
"cssnano": "^5.1.13",
"date-fns": "^2.29.2",
"css-loader": "^6.7.3",
"cssnano": "^5.1.15",
"date-fns": "^2.29.3",
"denque": "^2.1.0",
"detect-it": "^4.0.1",
"downloadjs": "^1.4.7",
"esbuild-loader": "^2.19.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"esbuild-loader": "^3.0.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.4.0",
"eslint-plugin-vue": "^9.9.0",
"file-loader": "^6.2.0",
"jquery": "^3.6.1",
"js-sha512": "^0.8.0",
@@ -92,25 +92,25 @@
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"postcss-discard-duplicates": "^5.1.0",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.1",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"query-string": "^7.1.1",
"sass": "^1.54.5",
"sass-loader": "^13.0.2",
"select2": "^4.0",
"style-loader": "^3.3.1",
"style-loader": "^3.3.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.5",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2",
"url-loader": "^4.1.1",
"uuid": "^8.3.2",
"uuid": "^9.0.0",
"vue": "^3.2.37",
"vue-eslint-parser": "^9.0.3",
"vue-loader": "^17.0.0",
"vue-multiselect": "^3.0.0-alpha.2",
"vue-eslint-parser": "^9.1.0",
"vue-loader": "^17.0.1",
"vue-multiselect": "^3.0.0-beta.1",
"vue-style-loader": "^4.1.3",
"vue-types": "^4.2.1",
"vuedraggable": "^4.1.0",
-2
View File
@@ -28,10 +28,8 @@
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
"preserveValueImports": true,
"useDefineForClassFields": true,
"resolveJsonModule": true,
"importsNotUsedAsValues": "error",
/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */
+2 -2
View File
@@ -4,7 +4,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const { resolve } = require('path');
const CleanTerminalPlugin = require('clean-terminal-webpack-plugin');
const { ESBuildMinifyPlugin } = require('esbuild-loader')
const { EsbuildPlugin } = require('esbuild-loader')
const webpack = require('webpack');
const fs = require('fs');
module.exports = (env, argv) => {
@@ -86,7 +86,7 @@ module.exports = (env, argv) => {
},
},
minimizer: [
new ESBuildMinifyPlugin({
new EsbuildPlugin({
css: true
}),
],