@rspack/test-tools 1.0.8 → 1.0.9

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.
Files changed (1) hide show
  1. package/package.json +8 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack/test-tools",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "license": "MIT",
5
5
  "description": "Test tools for rspack",
6
6
  "main": "dist/index.js",
@@ -45,7 +45,7 @@
45
45
  "jest-diff": "^29.7.0",
46
46
  "jest-serializer-path": "^0.1.15",
47
47
  "jest-snapshot": "29.7.0",
48
- "jsdom": "^24.0.0",
48
+ "jsdom": "^25.0.0",
49
49
  "memfs": "4.8.1",
50
50
  "mkdirp": "0.5.6",
51
51
  "pretty-format": "29.7.0",
@@ -74,7 +74,7 @@
74
74
  "babel-loader": "^9.1.3",
75
75
  "babel-plugin-import": "^1.13.5",
76
76
  "chalk": "^4.1.0",
77
- "coffee-loader": "^1.0.0",
77
+ "coffee-loader": "^5.0.0",
78
78
  "coffeescript": "^2.5.1",
79
79
  "copy-webpack-plugin": "5.1.2",
80
80
  "core-js": "3.36.1",
@@ -87,7 +87,6 @@
87
87
  "monaco-editor": "0.47.0",
88
88
  "monaco-editor-webpack-plugin": "7.1.0",
89
89
  "normalize.css": "^8.0.0",
90
- "npm-run-all2": "^6.2.0",
91
90
  "postcss-loader": "^8.0.0",
92
91
  "postcss-pxtorem": "^6.0.0",
93
92
  "pug-loader": "^2.4.0",
@@ -98,12 +97,12 @@
98
97
  "sass-embedded": "^1.77.8",
99
98
  "sass-loader": "^16.0.0",
100
99
  "source-map-loader": "^5.0.0",
101
- "style-loader": "^3.3.3",
100
+ "style-loader": "^4.0.0",
102
101
  "terser": "5.27.2",
103
102
  "typescript": "5.0.2",
104
103
  "wast-loader": "^1.12.1",
105
- "@rspack/cli": "1.0.8",
106
- "@rspack/core": "1.0.8"
104
+ "@rspack/cli": "1.0.9",
105
+ "@rspack/core": "1.0.9"
107
106
  },
108
107
  "peerDependencies": {
109
108
  "@rspack/core": ">=0.7.0"
@@ -113,8 +112,8 @@
113
112
  "build:viewer": "rspack build",
114
113
  "dev:viewer": "rspack serve",
115
114
  "dev": "tsc -b -w",
116
- "test": "sh -c 'run-s \"test:* -- $*\"' sh",
117
- "testu": "sh -c 'run-s \"test:* -- -u $*\"' sh",
115
+ "test": "pnpm run --stream /^test:.*/",
116
+ "testu": "pnpm run --stream /^test:.*/ -u",
118
117
  "test:base": "cross-env NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --colors --config ./jest.config.js --passWithNoTests",
119
118
  "test:hot": "cross-env RSPACK_HOT_TEST=true NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --colors --config ./jest.config.hot.js --passWithNoTests",
120
119
  "test:diff": "cross-env RSPACK_DIFF=true NO_COLOR=1 node --expose-gc --max-old-space-size=8192 --experimental-vm-modules ../../node_modules/jest-cli/bin/jest --logHeapUsage --colors --config ./jest.config.diff.js --passWithNoTests",