@rws-framework/client 2.9.13 → 2.9.14

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.
@@ -1,7 +1,6 @@
1
1
  const path = require('path');
2
2
 
3
3
  function getRWSLoaders(packageDir, nodeModulesPath, tsConfigPath){
4
- console.log(packageDir, nodeModulesPath, tsConfigPath);
5
4
 
6
5
  const scssLoader = packageDir + '/webpack/loaders/rws_fast_scss_loader.js';
7
6
  const tsLoader = packageDir + '/webpack/loaders/rws_fast_ts_loader.js';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.9.13",
4
+ "version": "2.9.14",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
@@ -36,30 +36,14 @@
36
36
  "json5": "^2.2.3",
37
37
  "lodash": "^4.17.21",
38
38
  "moment": "^2.29.4",
39
- "node-sass": "^7.0.3",
40
39
  "partial-json-parser": "^1.0.0",
41
40
  "reflect-metadata": "^0.1.13",
42
41
  "resolve-url-loader": "^5.0.0",
43
- "sanitize-html": "^2.12.1",
44
- "sass": "1.69.7",
45
- "sass-loader": "^13.3.2",
46
- "scss-loading-animations": "^1.0.1",
47
- "socket.io-client": "^4.7.2",
48
- "source-map": "^0.7.4",
49
- "source-map-support": "^0.5.21",
50
- "stacktrace-gps": "^3.1.2",
51
- "style-loader": "^3.3.3",
52
- "terser-webpack-plugin": "^5.3.9",
53
- "ts-loader": "^9.4.4",
54
- "ts-transformer-keys": "^0.4.4",
55
- "tsc-watch": "^6.0.4",
56
- "tslib": "^2.6.2",
57
- "uglify-js": "^3.17.4",
42
+ "sanitize-html": "^2.12.1",
58
43
  "upload": "^1.3.2",
59
44
  "url-router": "^13.0.0",
60
45
  "uuid": "^9.0.1",
61
- "v4": "^0.0.1",
62
- "webpack": "^5.89.0"
46
+ "v4": "^0.0.1"
63
47
  },
64
48
  "devDependencies": {
65
49
  "@types/dragula": "^3.7.4",
@@ -82,11 +66,6 @@
82
66
  "minimatch": "^9.0.4",
83
67
  "node-sass": "^9.0.0",
84
68
  "raw-loader": "^4.0.2",
85
- "sass-loader": "^13.3.2",
86
- "source-map": "^0.7.4",
87
- "style-loader": "^3.3.3",
88
- "terser-webpack-plugin": "^5.3.9",
89
- "ts-loader": "^9.4.4",
90
69
  "ts-node": "^10.9.1",
91
70
  "tsconfig-paths": "^4.2.0",
92
71
  "tsconfig-paths-webpack-plugin": "^4.1.0",
@@ -97,6 +76,20 @@
97
76
  "typedoc-theme-hierarchy": "^4.1.2",
98
77
  "typescript": "^5.1.6",
99
78
  "url-loader": "^4.1.1",
79
+ "sass": "1.69.7",
80
+ "sass-loader": "^13.3.2",
81
+ "scss-loading-animations": "^1.0.1",
82
+ "socket.io-client": "^4.7.2",
83
+ "source-map": "^0.7.4",
84
+ "source-map-support": "^0.5.21",
85
+ "stacktrace-gps": "^3.1.2",
86
+ "style-loader": "^3.3.3",
87
+ "terser-webpack-plugin": "^5.3.9",
88
+ "ts-loader": "^9.4.4",
89
+ "ts-transformer-keys": "^0.4.4",
90
+ "tsc-watch": "^6.0.4",
91
+ "tslib": "^2.6.2",
92
+ "uglify-js": "^3.17.4",
100
93
  "webpack": "^5.75.0",
101
94
  "webpack-bundle-analyzer": "^4.10.1",
102
95
  "webpack-cli": "^5.1.4",
@@ -216,13 +216,14 @@ const RWSWebpackWrapper = async (config) => {
216
216
  terserOptions: {
217
217
  keep_classnames: true, // Prevent mangling of class names
218
218
  mangle: false, //@error breaks FAST view stuff if enabled for all assets
219
- compress: !isDev ? {
219
+ compress: {
220
220
  dead_code: true,
221
221
  pure_funcs: ['console.log', 'console.info', 'console.warn']
222
- } : null,
222
+ },
223
223
  output: {
224
224
  comments: false,
225
- beautify: isDev
225
+ beautify: true,
226
+ ascii_only: true
226
227
  },
227
228
  },
228
229
  extractComments: false,