@swc/core 1.2.154 → 1.2.157

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
@@ -5,6 +5,219 @@
5
5
 
6
6
 
7
7
 
8
+ - **(es/ast)** Revert removal of `definite` in `PrivateProp` (#4051) ([bbe8f3d](https://github.com/swc-project/swc/commit/bbe8f3d8fe0a5a62fa2624c5cbe46980ad6264ac))
9
+
10
+
11
+ - **(es/codegen)** Fix codegen of string literals (#4037) ([bd444c0](https://github.com/swc-project/swc/commit/bd444c0ceb1bfdc8582e15dec439917474b55b25))
12
+
13
+
14
+ - **(es/codegen)** Fix sourcemap (#4062) ([9310c39](https://github.com/swc-project/swc/commit/9310c39fe922283b4bea46c30b08f8768cda577d))
15
+
16
+
17
+ - **(es/helpers)** Add missing `export` for `classPrivateFieldLooseKey` (#4045) ([3125bba](https://github.com/swc-project/swc/commit/3125bbacbe1dc9afa9e2c809146dcf42ab5c82de))
18
+
19
+
20
+ - **(es/helpers)** Export `classPrivateFieldLooseKey` as `default` (#4047) ([025c921](https://github.com/swc-project/swc/commit/025c921409caa53131bdacd3db2d4adeb1806d52))
21
+
22
+
23
+ - **(es/helpers)** Fix the name of `_classPrivateFieldLooseBase` (#4061) ([f8a3849](https://github.com/swc-project/swc/commit/f8a3849299e666e1b6543fec953732ed9c88a225))
24
+
25
+
26
+ - **(es/parser)** Allow nested ambient context in `.d.ts` files (#4060) ([ffcb6ce](https://github.com/swc-project/swc/commit/ffcb6ce523fb4ffba8531d5194f69e62c63d3d9a))
27
+
28
+
29
+ - **(plugin/runner)** Make build pass for `wasm32` (#4056) ([5c84fe5](https://github.com/swc-project/swc/commit/5c84fe525f336064eaa5b383cb4606f1b3cd8df2))
30
+
31
+ ### Features
32
+
33
+
34
+
35
+ - **(cli)** Enable plugins for `swc_cli` (#4059) ([fefb587](https://github.com/swc-project/swc/commit/fefb5870c7ed9bb4a97be778bf3be1eee74aa344))
36
+
37
+
38
+ - **(css/prefixer)** Support more properties (#4055) ([f2517a3](https://github.com/swc-project/swc/commit/f2517a345bcae30ebb4f0b2910a8db31e944648d))
39
+
40
+
41
+ - **(es/lints)** Implement `yoda` rule (#3886) ([833958b](https://github.com/swc-project/swc/commit/833958bd7469993e756c24dcd1263ef2c5ef9eb9))
42
+
43
+
44
+ - **(node-swc)** Add `libc` field in Linux platform packages (#4046) ([db9b988](https://github.com/swc-project/swc/commit/db9b9888459c0394209f68bad421eb31a491547a))
45
+
46
+
47
+ - **(node-swc)** Embed target triple string (#4058) ([5a2a603](https://github.com/swc-project/swc/commit/5a2a6037d442d76d557d07795def5653aff91f2a))
48
+
49
+ ## [1.2.156] - 2022-03-16
50
+
51
+ ### Bug Fixes
52
+
53
+
54
+
55
+ - **(es)** Sort spans while preserving comments (#4011) ([b337c2e](https://github.com/swc-project/swc/commit/b337c2e2d4716520c3cf718b2037d299d9654bc5))
56
+
57
+
58
+ - **(es/compat)** Change pass ordering of `es2015` (#4029) ([e19a60a](https://github.com/swc-project/swc/commit/e19a60aad44318d9752f790c913bf010423e7f7c))
59
+
60
+
61
+ - **(es/decorator)** Remove `noop_fold_type` (#4022) ([0c8c3d7](https://github.com/swc-project/swc/commit/0c8c3d7d51e49ad9050224a8647ebc55a0262b35))
62
+
63
+
64
+ - **(es/decorator)** Insert initializer to constructor with body (#4028) ([0c76696](https://github.com/swc-project/swc/commit/0c76696ed2d8cbf00a18fd9506b8c09f1be9cdd3))
65
+
66
+
67
+ - **(es/helpers)** Inject helpers for scripts (#4025) ([73c91d3](https://github.com/swc-project/swc/commit/73c91d34d5c6fcd869e99db02b0cf82f8e159224))
68
+
69
+
70
+ - **(es/lints)** Fix false-positive of `duplicate-exports` (#4041) ([ba1c854](https://github.com/swc-project/swc/commit/ba1c854fb1685e581599da3e9f25a4e35a9279bc))
71
+
72
+
73
+ - **(es/modules)** Use correct span for `ExportAll`s (#4038) ([834cd4f](https://github.com/swc-project/swc/commit/834cd4f7b6866729b345fe68ce6386dc94b202d7))
74
+
75
+
76
+ - **(es/parser)** Report an error if `LeftHandSideExpression` is invalid (#4001) ([f8d6127](https://github.com/swc-project/swc/commit/f8d6127dd1a064e2d4b255dfc1894a1b9eb89f71))
77
+
78
+
79
+ - **(es/parser)** Allow building with stable `rustc` (#4024) ([25e5ccc](https://github.com/swc-project/swc/commit/25e5ccc548260823c9ad78b607617440e04950d3))
80
+
81
+
82
+ - **(es/parser)** Emit an error for multiple constructors with body (#4031) ([120d2a5](https://github.com/swc-project/swc/commit/120d2a534e76003e726848f3fc9f6c648a837dbb))
83
+
84
+
85
+ - **(node-swc)** Disable logging of `warn` level by default (#4033) ([bba5a33](https://github.com/swc-project/swc/commit/bba5a33415b6420c9e7b85f50da4df6c11ac9e6d))
86
+
87
+ ### Features
88
+
89
+
90
+
91
+ - **(cli/compile)** Support `out-file` (#4016) ([629709e](https://github.com/swc-project/swc/commit/629709e1b14bb6c5a6b9963fec234fb9c6911786))
92
+
93
+
94
+ - **(css)** Supports more color notations (#4009) ([a4bc092](https://github.com/swc-project/swc/commit/a4bc0927a0c44ba9d3219964d8548a0cf11d24ce))
95
+
96
+
97
+ - **(css/prefixer)** Implement more rules for prefixer (#4013) ([4f6f244](https://github.com/swc-project/swc/commit/4f6f244170f2059e1b5a3765560b91c102e00a1b))
98
+
99
+
100
+ - **(es/minifier)** Drop noop calls (#4019) ([be09ea6](https://github.com/swc-project/swc/commit/be09ea6991165162fd9fa4cfce2ead4cdba0b0cf))
101
+
102
+
103
+ - **(es/transforms/base)** Add `paren_remover` (#4034) ([3a4704f](https://github.com/swc-project/swc/commit/3a4704fe77d3d3533e2f1dc438c63c8058a1df51))
104
+
105
+ ### Miscellaneous Tasks
106
+
107
+
108
+
109
+ - **(ci)** Make bump-command check lazy (#4018) ([c27b84c](https://github.com/swc-project/swc/commit/c27b84c3f693ecae73cb0da74dd6f6178d8ab45e))
110
+
111
+
112
+ - **(ci)** Fix auto-rebase script ([9b8b111](https://github.com/swc-project/swc/commit/9b8b11126480ae9b1160f3b5722fc4e27a05b025))
113
+
114
+
115
+ - **(ci)** Revert package scripts to fix publish action (#4039) ([eee8e0f](https://github.com/swc-project/swc/commit/eee8e0f7bb025fea83c6ba44a506799be061c2f6))- **general**: Fix CI ([da1fd03](https://github.com/swc-project/swc/commit/da1fd033b846696dec555d2e7cfb2b62b0f4d7eb))
116
+
117
+ ### Refactor
118
+
119
+
120
+
121
+ - **(es/minifier)** Cleanup (#4020) ([3173047](https://github.com/swc-project/swc/commit/3173047f589128c429d02b7cb128d80f0fd6e011))
122
+
123
+
124
+ - **(plugin/runner)** Split modules and introduce feature flags (#4035) ([dab2002](https://github.com/swc-project/swc/commit/dab2002a2eebefde1db545fd8f388fa528079f33))
125
+
126
+ ### Testing
127
+
128
+
129
+
130
+ - **(es)** Add tests for fixed issues (#4036) ([71f7cf2](https://github.com/swc-project/swc/commit/71f7cf2011fd948a0c1d7c4268316f3c0103f2f3))
131
+
132
+ ### Build
133
+
134
+
135
+
136
+ - **(tsconfig)** Set `tsbuildinfo` filename (#4042) ([a1308c9](https://github.com/swc-project/swc/commit/a1308c9a16c651555acb2c6e082ce95519fda88e))
137
+
138
+ ## [1.2.155] - 2022-03-14
139
+
140
+ ### Bug Fixes
141
+
142
+
143
+
144
+ - **(common)** Don't use `None` as source while generating source maps (#4007) ([0ad13d9](https://github.com/swc-project/swc/commit/0ad13d93f288e54f245b249920d74cfe13d1e969))
145
+
146
+
147
+ - **(css/codegen)** Fix source maps (#3997) ([ece8d96](https://github.com/swc-project/swc/commit/ece8d962f86a9adadf02b425288308a2a06851fb))
148
+
149
+
150
+ - **(es)** Merge `jsc.loose` and `jsc.assumptions` (#3990) ([3590ea2](https://github.com/swc-project/swc/commit/3590ea22779fa3ca57fc9eab55cd203f9fb23f29))
151
+
152
+
153
+ - **(es/resolver)** Use correct context for identifiers after type parameters (#4000) ([87a3c1c](https://github.com/swc-project/swc/commit/87a3c1c91673c2609e71eda12f969a1fd4e56294))
154
+
155
+ ### Documentation
156
+
157
+
158
+
159
+ - **(api/rust)** Add examples (#4002) ([dac84b9](https://github.com/swc-project/swc/commit/dac84b98e38bd546cb9c9df72e3ad8d08b9550d9))
160
+
161
+
162
+ - **(api/rust)** Add an example for generating code and sourcemap (#4005) ([f650ca6](https://github.com/swc-project/swc/commit/f650ca6bb91845558d66c975d7c01c235eaa4ab1))
163
+
164
+ ### Features
165
+
166
+
167
+
168
+ - **(common)** Implement a pretty error reporter (#3946) ([40b8a4e](https://github.com/swc-project/swc/commit/40b8a4e596f0df33a325c93b75e5abab1336be11))
169
+
170
+
171
+ - **(css/parser)** Improve error reporting (#3999) ([96d6f37](https://github.com/swc-project/swc/commit/96d6f37c204f4962d0850a4ee2e38652d4833fa3))
172
+
173
+
174
+ - **(es/minifier)** Implement more rules for `arrows` (#3992) ([64ca5ba](https://github.com/swc-project/swc/commit/64ca5bae4d87b0aed82776d74e6aa5e2a712a35f))
175
+
176
+
177
+ - **(es/minifier)** Compress more comparisons (#3996) ([a23af2d](https://github.com/swc-project/swc/commit/a23af2dea243a16a12ce09c778f6fd3d56da0382))
178
+
179
+ ### Miscellaneous Tasks
180
+
181
+
182
+
183
+ - **(ci)** Invoke `yarn` before publishing ([743a5da](https://github.com/swc-project/swc/commit/743a5da1e5e6a3c9b8c59694e4f3cf04fa89006d))
184
+
185
+
186
+ - **(es/preset-env)** Track `.json` files to make cargo happy ([bd0fcb9](https://github.com/swc-project/swc/commit/bd0fcb9ea491f713ab3c0ed2b6035d3438446e8e))- **general**: Update linguist (#3991) ([0312292](https://github.com/swc-project/swc/commit/0312292410e3e001906241f5a2ab88839995376f))
187
+
188
+ ### Performance
189
+
190
+
191
+
192
+ - **(es/minifier)** Refactor base54 (#3989) ([04db7e2](https://github.com/swc-project/swc/commit/04db7e2a9be00248e005deb0a9113bcba0039e8f))
193
+
194
+
195
+ - **(es/minifier)** Use `Vec<u8>` as a buffer for `base54` (#3993) ([f7b212b](https://github.com/swc-project/swc/commit/f7b212bfc4fe9cdc89b77b5639be52a586c220e0))
196
+
197
+ ### Testing
198
+
199
+
200
+
201
+ - **(*)** Print diagnostics to stderr while testing (#4003) ([ee9a841](https://github.com/swc-project/swc/commit/ee9a841f33005c1ae287151952cf132a18b26de6))
202
+
203
+
204
+ - **(es)** Add an execution test system (#3994) ([b22d084](https://github.com/swc-project/swc/commit/b22d084180b77508f5e940045eb1b7bb9cd5c99b))
205
+
206
+
207
+ - **(es)** Add auto-closable tests (#3995) ([dabc492](https://github.com/swc-project/swc/commit/dabc4920a813ab395a96f9f8f90b3c50163063f9))
208
+
209
+ ### Build
210
+
211
+
212
+
213
+ - **(cargo)** Set workspace default members (#3978) ([560c81b](https://github.com/swc-project/swc/commit/560c81b120043b1edc20702a3ccfe3d3336c489a))
214
+
215
+ ## [1.2.154] - 2022-03-12
216
+
217
+ ### Bug Fixes
218
+
219
+
220
+
8
221
  - **(es)** Change error message as it can be misleading (#3982) ([48f2fd8](https://github.com/swc-project/swc/commit/48f2fd8e1b723e3dfa1d54c25aa9f3c391c5ee74))
9
222
 
10
223
 
package/binding.d.ts CHANGED
@@ -11,5 +11,6 @@ export const transform: any;
11
11
  export const transformSync: any;
12
12
  export const transformFile: any;
13
13
  export const transformFileSync: any;
14
+ export const getTargetTriple: any;
14
15
  export const initCustomTraceSubscriber: any;
15
16
  export const Compiler: any;
package/binding.js CHANGED
@@ -243,7 +243,7 @@ if (!nativeBinding) {
243
243
  }
244
244
  throw new Error(`Failed to load native binding`);
245
245
  }
246
- const { bundle, minify, minifySync, parse, parseSync, parseFileSync, parseFile, print, printSync, transform, transformSync, transformFile, transformFileSync, initCustomTraceSubscriber, Compiler } = nativeBinding;
246
+ const { bundle, minify, minifySync, parse, parseSync, parseFileSync, parseFile, print, printSync, transform, transformSync, transformFile, transformFileSync, getTargetTriple, initCustomTraceSubscriber, Compiler } = nativeBinding;
247
247
  module.exports.bundle = bundle;
248
248
  module.exports.minify = minify;
249
249
  module.exports.minifySync = minifySync;
@@ -257,5 +257,6 @@ module.exports.transform = transform;
257
257
  module.exports.transformSync = transformSync;
258
258
  module.exports.transformFile = transformFile;
259
259
  module.exports.transformFileSync = transformFileSync;
260
+ module.exports.getTargetTriple = getTargetTriple;
260
261
  module.exports.initCustomTraceSubscriber = initCustomTraceSubscriber;
261
262
  module.exports.Compiler = Compiler;
package/index.d.ts CHANGED
@@ -92,4 +92,15 @@ export declare function __experimental_registerGlobalTraceConfig(traceConfig: {
92
92
  type: 'traceEvent';
93
93
  fileName?: string;
94
94
  }): void;
95
+ /**
96
+ * @ignore
97
+ *
98
+ * Returns current binary's metadata to determine which binary is actually loaded.
99
+ *
100
+ * This is undocumented interface, does not gaurantee stability across `@swc/core`'s semver
101
+ * as internal representation may change anytime. Use it with caution.
102
+ */
103
+ export declare function getBinaryMetadata(): {
104
+ target: any;
105
+ };
95
106
  export declare const DEFAULT_EXTENSIONS: readonly string[];
package/index.js CHANGED
@@ -30,7 +30,7 @@ var __rest = (this && this.__rest) || function (s, e) {
30
30
  return t;
31
31
  };
32
32
  Object.defineProperty(exports, "__esModule", { value: true });
33
- exports.DEFAULT_EXTENSIONS = exports.__experimental_registerGlobalTraceConfig = exports.minifySync = exports.minify = exports.bundle = exports.transformFileSync = exports.transformFile = exports.transformSync = exports.transform = exports.printSync = exports.print = exports.parseFileSync = exports.parseFile = exports.parseSync = exports.parse = exports.Compiler = exports.plugins = exports.version = void 0;
33
+ exports.DEFAULT_EXTENSIONS = exports.getBinaryMetadata = exports.__experimental_registerGlobalTraceConfig = exports.minifySync = exports.minify = exports.bundle = exports.transformFileSync = exports.transformFile = exports.transformSync = exports.transform = exports.printSync = exports.print = exports.parseFileSync = exports.parseFile = exports.parseSync = exports.parse = exports.Compiler = exports.plugins = exports.version = void 0;
34
34
  const path_1 = require("path");
35
35
  __exportStar(require("./types"), exports);
36
36
  const spack_1 = require("./spack");
@@ -263,6 +263,20 @@ function __experimental_registerGlobalTraceConfig(traceConfig) {
263
263
  }
264
264
  }
265
265
  exports.__experimental_registerGlobalTraceConfig = __experimental_registerGlobalTraceConfig;
266
+ /**
267
+ * @ignore
268
+ *
269
+ * Returns current binary's metadata to determine which binary is actually loaded.
270
+ *
271
+ * This is undocumented interface, does not gaurantee stability across `@swc/core`'s semver
272
+ * as internal representation may change anytime. Use it with caution.
273
+ */
274
+ function getBinaryMetadata() {
275
+ return {
276
+ target: bindings.getTargetTriple()
277
+ };
278
+ }
279
+ exports.getBinaryMetadata = getBinaryMetadata;
266
280
  exports.DEFAULT_EXTENSIONS = Object.freeze([
267
281
  ".js",
268
282
  ".jsx",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.154",
3
+ "version": "1.2.157",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -56,12 +56,22 @@
56
56
  "prepare": "husky install && git config feature.manyFiles true && node ./crates/swc_ecma_preset_env/scripts/copy-data.js",
57
57
  "artifacts": "napi artifacts --dist scripts/npm",
58
58
  "prepublishOnly": "tsc -d && napi prepublish -p scripts/npm --tagstyle npm",
59
+ "pack": "wasm-pack",
60
+ "build:ts": "tsc -d",
61
+ "build:wasm": "npm-run-all \"pack -- build ./crates/wasm --scope swc {1} -t {2} --features plugin\" --",
59
62
  "build": "tsc -d && napi build --platform --cargo-name node --js ./node-swc/src/binding.js --dts ./node-swc/src/binding.d.ts -p node --release",
60
63
  "build:dev": "tsc -d && napi build --platform --cargo-name node --js ./node-swc/src/binding.js --dts ./node-swc/src/binding.d.ts -p node",
61
- "build:ts": "tsc -d",
62
64
  "test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest node-swc/__tests__",
63
65
  "version": "napi version -p scripts/npm"
64
66
  },
67
+ "lint-staged": {
68
+ "*.toml": [
69
+ "taplo format"
70
+ ],
71
+ "*.rs": [
72
+ "cargo fmt --"
73
+ ]
74
+ },
65
75
  "devDependencies": {
66
76
  "@babel/compat-data": "^7.17.0",
67
77
  "@babel/core": "^7.13.16",
@@ -74,6 +84,7 @@
74
84
  "@babel/types": "^7.14.0",
75
85
  "@napi-rs/cli": "^2.4.5",
76
86
  "@swc/helpers": "^0.2.10",
87
+ "@taplo/cli": "^0.3.2",
77
88
  "@types/jest": "^26.0.23",
78
89
  "@types/node": "^14.14.41",
79
90
  "acorn": "^8.6.0",
@@ -89,8 +100,10 @@
89
100
  "expect": "^27.4.2",
90
101
  "husky": "^7.0.2",
91
102
  "jest": "^27.0.1",
103
+ "lint-staged": "^12.3.6",
92
104
  "lodash": "^4.17.21",
93
105
  "mocha": "^9.1.3",
106
+ "npm-run-all": "^4.1.5",
94
107
  "progress": "^2.0.3",
95
108
  "prop-types": "^15.7.2",
96
109
  "react": "^17.0.2",
@@ -108,18 +121,18 @@
108
121
  "url": "https://opencollective.com/swc"
109
122
  },
110
123
  "optionalDependencies": {
111
- "@swc/core-win32-x64-msvc": "1.2.154",
112
- "@swc/core-darwin-x64": "1.2.154",
113
- "@swc/core-linux-x64-gnu": "1.2.154",
114
- "@swc/core-linux-x64-musl": "1.2.154",
115
- "@swc/core-freebsd-x64": "1.2.154",
116
- "@swc/core-win32-ia32-msvc": "1.2.154",
117
- "@swc/core-linux-arm64-gnu": "1.2.154",
118
- "@swc/core-linux-arm-gnueabihf": "1.2.154",
119
- "@swc/core-darwin-arm64": "1.2.154",
120
- "@swc/core-android-arm64": "1.2.154",
121
- "@swc/core-linux-arm64-musl": "1.2.154",
122
- "@swc/core-win32-arm64-msvc": "1.2.154",
123
- "@swc/core-android-arm-eabi": "1.2.154"
124
+ "@swc/core-win32-x64-msvc": "1.2.157",
125
+ "@swc/core-darwin-x64": "1.2.157",
126
+ "@swc/core-linux-x64-gnu": "1.2.157",
127
+ "@swc/core-linux-x64-musl": "1.2.157",
128
+ "@swc/core-freebsd-x64": "1.2.157",
129
+ "@swc/core-win32-ia32-msvc": "1.2.157",
130
+ "@swc/core-linux-arm64-gnu": "1.2.157",
131
+ "@swc/core-linux-arm-gnueabihf": "1.2.157",
132
+ "@swc/core-darwin-arm64": "1.2.157",
133
+ "@swc/core-android-arm64": "1.2.157",
134
+ "@swc/core-linux-arm64-musl": "1.2.157",
135
+ "@swc/core-win32-arm64-msvc": "1.2.157",
136
+ "@swc/core-android-arm-eabi": "1.2.157"
124
137
  }
125
138
  }