@lixianwei/elpis 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,8 +10,6 @@ module.exports = () => {
10
10
  // 从webpack.dev.js获取webpack配置和devServer配置
11
11
  const {webpackConfig,DEV_SERVER_CONFIG} = require('./config/webpack.dev.js');
12
12
 
13
- console.log('9999',webpackConfig)
14
-
15
13
  const app = express();
16
14
 
17
15
  const compiler = webpack(webpackConfig);
@@ -1,7 +1,6 @@
1
1
  const webpack = require('webpack')
2
2
  const webpackProdConfig = require('./config/webpack.prod.js')
3
3
  module.exports = () => {
4
- console.log('building...')
5
4
  webpack(webpackProdConfig,(err, stats) => {
6
5
  if (err) {
7
6
  console.log(err)
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@lixianwei/elpis",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "cross-env _ENV=local mocha test/**/*.js",
8
8
  "lint": "eslint --quiet --ext js,vue ."
9
-
10
9
  },
11
10
  "repository": {
12
11
  "type": "git",
@@ -16,14 +15,28 @@
16
15
  "license": "ISC",
17
16
  "dependencies": {
18
17
  "@babel/core": "^7.24.0",
18
+ "@babel/plugin-transform-runtime": "^7.1.0",
19
+ "@babel/preset-env": "^7.4.5",
19
20
  "@babel/runtime": "^7.24.0",
20
21
  "@element-plus/icons-vue": "^2.3.2",
21
22
  "ajv": "^6.10.2",
22
23
  "axios": "^0.19.2",
24
+ "babel-loader": "^8.0.4",
25
+ "clean-webpack-plugin": "^0.1.19",
26
+ "consoler": "^0.2.0",
27
+ "cross-env": "^10.1.0",
28
+ "css-loader": "^0.23.1",
29
+ "css-minimizer-webpack-plugin": "^5.0.1",
30
+ "directory-named-webpack-plugin": "^4.0.1",
23
31
  "echarts": "^5.5.0",
24
32
  "element-plus": "^2.3.7",
33
+ "express": "^4.18.2",
34
+ "file-loader": "^6.2.0",
25
35
  "generate-password": "^1.7.1",
26
36
  "glob": "^7.1.4",
37
+ "happypack": "^5.0.1",
38
+ "html-webpack-inject-attributes-plugin": "^1.0.1",
39
+ "html-webpack-plugin": "^5.5.3",
27
40
  "jsonwebtoken": "^9.0.2",
28
41
  "knex": "^0.19.0",
29
42
  "koa": "2.7.0",
@@ -34,41 +47,27 @@
34
47
  "koa-useragent": "2.0.0",
35
48
  "koa2-cors": "^2.0.6",
36
49
  "less": "^3.8.1",
50
+ "less-loader": "^11.1.3",
37
51
  "lodash": "^4.17.21",
38
52
  "log4js": "^6.9.1",
39
53
  "md5": "^2.2.1",
54
+ "mini-css-extract-plugin": "^2.7.6",
40
55
  "moment": "^2.29.4",
41
56
  "mysql": "^2.18.1",
42
57
  "node-schedule": "^2.1.1",
43
58
  "nodemon": "^1.19.2",
44
59
  "path": "^0.12.7",
45
60
  "pinia": "^2.1.6",
46
- "superagent": "^8.1.2",
47
- "vue": "^3.3.4",
48
- "vue-json-viewer": "^3.0.4",
49
- "vue-router": "^4.2.4",
50
- "vuex": "^4.1.0",
51
- "@babel/plugin-transform-runtime": "^7.1.0",
52
- "@babel/preset-env": "^7.4.5",
53
- "babel-loader": "^8.0.4",
54
- "clean-webpack-plugin": "^0.1.19",
55
- "consoler": "^0.2.0",
56
- "cross-env": "^10.1.0",
57
- "css-loader": "^0.23.1",
58
- "css-minimizer-webpack-plugin": "^5.0.1",
59
- "directory-named-webpack-plugin": "^4.0.1",
60
- "express": "^4.18.2",
61
- "file-loader": "^6.2.0",
62
- "happypack": "^5.0.1",
63
- "html-webpack-inject-attributes-plugin": "^1.0.1",
64
- "html-webpack-plugin": "^5.5.3",
65
- "less-loader": "^11.1.3",
66
- "mini-css-extract-plugin": "^2.7.6",
67
61
  "style-loader": "^0.14.1",
62
+ "superagent": "^8.1.2",
68
63
  "terser-webpack-plugin": "^5.6.1",
69
64
  "url-loader": "^4.1.1",
65
+ "vue": "^3.3.4",
66
+ "vue-json-viewer": "^3.0.4",
70
67
  "vue-loader": "^17.2.2",
68
+ "vue-router": "^4.2.4",
71
69
  "vue-style-loader": "^4.1.2",
70
+ "vuex": "^4.1.0",
72
71
  "webpack": "^5.88.1",
73
72
  "webpack-dev-middleware": "^6.1.1",
74
73
  "webpack-hot-middleware": "^2.25.4",