@modern-js/utils 2.0.0-beta.6 → 2.0.0-beta.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @modern-js/utils
2
2
 
3
+ ## 2.0.0-beta.7
4
+
5
+ ### Major Changes
6
+
7
+ - dda38c9c3e: chore: v2
8
+
9
+ ### Minor Changes
10
+
11
+ - edd1cfb1af: feat: modernjs Access builder compiler
12
+ feat: modernjs 接入 builder 构建
13
+ - bbe4c4ab64: feat: add @modern-js/plugin-swc
14
+
15
+ feat: 新增 @modern-js/plugin-swc 插件
16
+
3
17
  ## 2.0.0-beta.6
4
18
 
5
19
  ### Major Changes
package/dist/chainId.d.ts CHANGED
@@ -23,6 +23,8 @@ export declare const CHAIN_ID: {
23
23
  readonly LESS: "less";
24
24
  /** Rule for sass */
25
25
  readonly SASS: "sass";
26
+ /** Rule for stylus */
27
+ readonly STYLUS: "stylus";
26
28
  /** Rule for svg */
27
29
  readonly SVG: "svg";
28
30
  /** Rule for pug */
@@ -68,6 +70,8 @@ export declare const CHAIN_ID: {
68
70
  readonly SASS: "sass";
69
71
  /** less-loader */
70
72
  readonly LESS: "less";
73
+ /** stylus-loader */
74
+ readonly STYLUS: "stylus";
71
75
  /** url-loader */
72
76
  readonly URL: "url";
73
77
  /** pug-loader */
package/dist/chainId.js CHANGED
@@ -26,6 +26,8 @@ exports.CHAIN_ID = {
26
26
  LESS: 'less',
27
27
  /** Rule for sass */
28
28
  SASS: 'sass',
29
+ /** Rule for stylus */
30
+ STYLUS: 'stylus',
29
31
  /** Rule for svg */
30
32
  SVG: 'svg',
31
33
  /** Rule for pug */
@@ -71,6 +73,8 @@ exports.CHAIN_ID = {
71
73
  SASS: 'sass',
72
74
  /** less-loader */
73
75
  LESS: 'less',
76
+ /** stylus-loader */
77
+ STYLUS: 'stylus',
74
78
  /** url-loader */
75
79
  URL: 'url',
76
80
  /** pug-loader */
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "2.0.0-beta.6",
14
+ "version": "2.0.0-beta.7",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/index.d.ts",
17
17
  "main": "./dist/index.js",
@@ -131,12 +131,12 @@
131
131
  "devDependencies": {
132
132
  "@types/jest": "^27",
133
133
  "@types/node": "^14",
134
- "typescript": "^4",
135
134
  "jest": "^27",
135
+ "typescript": "^4",
136
136
  "webpack": "^5.75.0",
137
- "@modern-js/types": "2.0.0-beta.6",
138
- "@scripts/jest-config": "2.0.0-beta.6",
139
- "@scripts/build": "2.0.0-beta.6"
137
+ "@modern-js/types": "2.0.0-beta.7",
138
+ "@scripts/jest-config": "2.0.0-beta.7",
139
+ "@scripts/build": "2.0.0-beta.7"
140
140
  },
141
141
  "sideEffects": false,
142
142
  "scripts": {