@ray-js/builder-web 1.6.24 → 1.6.26

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/lib/build.js CHANGED
@@ -196,6 +196,8 @@ function build(options, context) {
196
196
  'process.env.GLOBAL_GLOBAL': 'window',
197
197
  'process.env.RAY_DEBUG': JSON.stringify(`${compileOptions.debug}`),
198
198
  'process.env.REMAX_DEBUG': JSON.stringify(`${compileOptions.debug}`),
199
+ 'process.env.IDE_LANG': JSON.stringify(process.env.IDE_LANG || ''),
200
+ 'process.env.MINIPACK_LANG': JSON.stringify(process.env.MINIPACK_LANG || ''),
199
201
  },
200
202
  ]);
201
203
  analyze && config.plugin('bundle-analyzer-plugin').use(webpack_bundle_analyzer_1.BundleAnalyzerPlugin);
@@ -8,7 +8,6 @@ const postcss_units_transform_1 = __importDefault(require("postcss-units-transfo
8
8
  const autoprefixer_1 = __importDefault(require("autoprefixer"));
9
9
  const postcss_selector_rename_1 = __importDefault(require("postcss-selector-rename"));
10
10
  function processCss(config) {
11
- ;
12
11
  [
13
12
  { name: 'css-module', test: /\.module\.css$/, cssModules: true },
14
13
  { name: 'css', test: /\.css$/, cssModules: false, exclude: /\.module\.css$/ },
@@ -8,7 +8,6 @@ const postcss_units_transform_1 = __importDefault(require("postcss-units-transfo
8
8
  const autoprefixer_1 = __importDefault(require("autoprefixer"));
9
9
  const postcss_selector_rename_1 = __importDefault(require("postcss-selector-rename"));
10
10
  function processLess(config) {
11
- ;
12
11
  [
13
12
  { name: 'less-module', test: /\.module\.less$/, cssModules: true },
14
13
  { name: 'less', test: /\.less$/, cssModules: false, exclude: /\.module\.less$/ },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ray-js/builder-web",
3
- "version": "1.6.24",
3
+ "version": "1.6.26",
4
4
  "description": "Ray builder for web",
5
5
  "keywords": [
6
6
  "ray"
@@ -24,9 +24,9 @@
24
24
  "watch": "tsc -p ./tsconfig.build.json --watch"
25
25
  },
26
26
  "dependencies": {
27
- "@ray-js/babel-preset-standard": "1.6.24",
28
- "@ray-js/shared": "1.6.24",
29
- "@ray-js/types": "1.6.24",
27
+ "@ray-js/babel-preset-standard": "1.6.26",
28
+ "@ray-js/shared": "1.6.26",
29
+ "@ray-js/types": "1.6.26",
30
30
  "address": "^1.2.2",
31
31
  "autoprefixer": "^9.8.8",
32
32
  "case-sensitive-paths-webpack-plugin": "^2.4.0",
@@ -38,7 +38,7 @@
38
38
  "fs-extra": "^10.1.0",
39
39
  "html-webpack-plugin": "^5.6.3",
40
40
  "inquirer": "^8.2.6",
41
- "less": "^4.2.1",
41
+ "less": "^4.2.2",
42
42
  "less-loader": "^7.3.0",
43
43
  "postcss-loader": "^3.0.0",
44
44
  "postcss-selector-rename": "^2.1.0",
@@ -52,12 +52,12 @@
52
52
  "webpackbar": "^5.0.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@types/node": "^20.17.6",
56
- "typescript": "^5.7.2"
55
+ "@types/node": "^20.17.24",
56
+ "typescript": "^5.8.2"
57
57
  },
58
58
  "publishConfig": {
59
59
  "access": "public",
60
60
  "registry": "https://registry.npmjs.com"
61
61
  },
62
- "gitHead": "9d1aef04d0004295179fb3d9f011b0d3e4018f87"
62
+ "gitHead": "d842231dd15303495069483a809a71dbc640ebaf"
63
63
  }