5htp 0.4.4 → 0.4.6-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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "5htp",
3
3
  "description": "Convenient TypeScript framework designed for Performance and Productivity.",
4
- "version": "0.4.4",
4
+ "version": "0.4.6-1",
5
5
  "author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
6
6
  "repository": "git://github.com/gaetanlegac/5htp.git",
7
7
  "license": "MIT",
@@ -39,10 +39,11 @@
39
39
  "@types/universal-analytics": "^0.4.5",
40
40
  "@types/webpack-env": "^1.16.2",
41
41
  "@types/ws": "^7.4.7",
42
- "babel-loader": "^8.2.2",
42
+ "babel-loader": "^10.0.0",
43
43
  "babel-plugin-glob-import": "^0.0.9-1",
44
44
  "babel-plugin-transform-imports": "^2.0.0",
45
45
  "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
46
+ "babel-plugin-transform-remove-console": "^6.9.4",
46
47
  "brotli-webpack-plugin": "^1.1.0",
47
48
  "browser-sync": "^2.27.5",
48
49
  "compression-webpack-plugin": "^8.0.1",
@@ -73,14 +74,13 @@
73
74
  "ts-alias": "^0.0.7",
74
75
  "ts-node": "^10.9.1",
75
76
  "webfont": "^11.2.26",
76
- "webpack": "^5.89.0",
77
+ "webpack": "^5.98.0",
77
78
  "webpack-assets-manifest": "^5.0.6",
78
79
  "webpack-bundle-analyzer": "^4.4.2",
79
80
  "webpack-dev-middleware": "^5.1.0",
80
81
  "webpack-hot-middleware": "^2.25.0",
81
82
  "webpack-node-externals": "^3.0.0",
82
- "webpack-virtual-modules": "^0.4.3",
83
- "babel-plugin-transform-remove-console": "^6.9.4"
83
+ "webpack-virtual-modules": "^0.4.3"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@types/babel__preset-env": "^7.9.6",
@@ -116,6 +116,8 @@ export default function createCompiler( app: App, mode: TCompileMode ): webpack.
116
116
  app.paths.root + '/src/common',
117
117
  cli.paths.core.root + '/src/common',
118
118
 
119
+ app.paths.root + '/src/server/.generated/models.ts',
120
+
119
121
  ],
120
122
  rules: require('../common/babel')(app, 'client', dev)
121
123
  },