@swc/plugin-formatjs 8.1.0 → 9.0.1
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 +18 -0
- package/README.md +18 -0
- package/package.json +3 -3
- package/swc_plugin_formatjs.wasm +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @swc/plugin-formatjs
|
|
2
2
|
|
|
3
|
+
## 9.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a73246f: build: Update swc_core to v49.0.0
|
|
8
|
+
|
|
9
|
+
## 9.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- 6c46f86: feat: Enable backward-compatibility feature
|
|
14
|
+
|
|
15
|
+
## 8.1.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- ad79e09: Update swc_core to v48.0.4
|
|
20
|
+
|
|
3
21
|
## 8.1.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -95,6 +95,24 @@ Will extract the metadata: `{project: "web", locale: "en", region: "us"}` that g
|
|
|
95
95
|
|
|
96
96
|
# @swc/plugin-formatjs
|
|
97
97
|
|
|
98
|
+
## 9.0.1
|
|
99
|
+
|
|
100
|
+
### Patch Changes
|
|
101
|
+
|
|
102
|
+
- a73246f: build: Update swc_core to v49.0.0
|
|
103
|
+
|
|
104
|
+
## 9.0.0
|
|
105
|
+
|
|
106
|
+
### Major Changes
|
|
107
|
+
|
|
108
|
+
- 6c46f86: feat: Enable backward-compatibility feature
|
|
109
|
+
|
|
110
|
+
## 8.1.1
|
|
111
|
+
|
|
112
|
+
### Patch Changes
|
|
113
|
+
|
|
114
|
+
- ad79e09: Update swc_core to v48.0.4
|
|
115
|
+
|
|
98
116
|
## 8.1.0
|
|
99
117
|
|
|
100
118
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/plugin-formatjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@swc/counter": "^0.1.3"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
|
-
"build": "cargo build --release -p swc_plugin_formatjs --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/release/swc_plugin_formatjs.wasm .",
|
|
28
|
-
"build:debug": "cargo build -p swc_plugin_formatjs --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/debug/swc_plugin_formatjs.wasm .",
|
|
27
|
+
"build": "RUSTFLAGS='--cfg swc_ast_unknown' cargo build --release -p swc_plugin_formatjs --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/release/swc_plugin_formatjs.wasm .",
|
|
28
|
+
"build:debug": "RUSTFLAGS='--cfg swc_ast_unknown' cargo build -p swc_plugin_formatjs --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/debug/swc_plugin_formatjs.wasm .",
|
|
29
29
|
"test": "pnpm run build:debug && vitest run --testTimeout=0"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/swc_plugin_formatjs.wasm
CHANGED
|
Binary file
|