@modern-js/plugin-i18n 1.0.0-alpha.3 → 1.0.0-rc.11

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 (2) hide show
  1. package/CHANGELOG.md +58 -1
  2. package/package.json +40 -36
package/CHANGELOG.md CHANGED
@@ -1,6 +1,63 @@
1
1
  # @modern-js/plugin-i18n
2
2
 
3
- ## 1.0.0-alpha.3
3
+ ## 1.0.0-rc.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 224f7fe: fix server route match
8
+ - 204c626: feat: initial
9
+
10
+ ## 1.0.0-rc.10
11
+
12
+ ### Patch Changes
13
+
14
+ - 224f7fe: fix server route match
15
+ - 204c626: feat: initial
16
+
17
+ ## 1.0.0-rc.9
18
+
19
+ ### Patch Changes
20
+
21
+ - 224f7fe: fix server route match
22
+ - 204c626: feat: initial
23
+
24
+ ## 1.0.0-rc.8
25
+
26
+ ### Patch Changes
27
+
28
+ - 224f7fe: fix server route match
29
+ - 204c626: feat: initial
30
+
31
+ ## 1.0.0-rc.7
32
+
33
+ ### Patch Changes
34
+
35
+ - 224f7fe: fix server route match
36
+ - 204c626: feat: initial
37
+
38
+ ## 1.0.0-rc.6
39
+
40
+ ### Patch Changes
41
+
42
+ - 224f7fe: fix server route match
43
+ - 204c626: feat: initial
44
+
45
+ ## 1.0.0-rc.5
46
+
47
+ ### Patch Changes
48
+
49
+ - 224f7fe: fix server route match
50
+ - 204c626: feat: initial
51
+
52
+ ## 1.0.0-rc.4
53
+
54
+ ### Patch Changes
55
+
56
+ - fix server route match
57
+ - 204c626: feat: initial
58
+
59
+ ## 1.0.0-rc.3
60
+
4
61
  ### Patch Changes
5
62
 
6
63
  - feat: initial
package/package.json CHANGED
@@ -1,37 +1,41 @@
1
1
  {
2
- "name": "@modern-js/plugin-i18n",
3
- "version": "1.0.0-alpha.3",
4
- "jsnext:source": "./src/index.ts",
5
- "types": "./dist/types/index.d.ts",
6
- "main": "./dist/js/node/index.js",
7
- "module": "./dist/js/treeshaking/index.js",
8
- "jsnext:modern": "./dist/js/modern/index.js",
9
- "exports": {
10
- ".": {
11
- "node": {
12
- "import": "./dist/js/modern/index.js",
13
- "require": "./dist/js/node/index.js"
14
- },
15
- "default": "./dist/js/treeshaking/index.js"
16
- }
17
- },
18
- "dependencies": {
19
- "@babel/runtime": "^7",
20
- "lodash": "^4.17.11"
21
- },
22
- "devDependencies": {
23
- "@types/jest": "^26",
24
- "@types/lodash": "^4.14.126",
25
- "@types/node": "^14",
26
- "typescript": "^4",
27
- "@modern-js/plugin-testing": "^1.0.0-alpha.3",
28
- "@modern-js/module-tools": "^1.0.0-alpha.3"
29
- },
30
- "sideEffects": false,
31
- "modernConfig": {},
32
- "scripts": {
33
- "new": "modern new",
34
- "build": "modern build",
35
- "test": "modern test --passWithNoTests"
36
- }
37
- }
2
+ "name": "@modern-js/plugin-i18n",
3
+ "version": "1.0.0-rc.11",
4
+ "jsnext:source": "./src/index.ts",
5
+ "types": "./dist/types/index.d.ts",
6
+ "main": "./dist/js/node/index.js",
7
+ "module": "./dist/js/treeshaking/index.js",
8
+ "jsnext:modern": "./dist/js/modern/index.js",
9
+ "exports": {
10
+ ".": {
11
+ "node": {
12
+ "import": "./dist/js/modern/index.js",
13
+ "require": "./dist/js/node/index.js"
14
+ },
15
+ "default": "./dist/js/treeshaking/index.js"
16
+ }
17
+ },
18
+ "dependencies": {
19
+ "@babel/runtime": "^7",
20
+ "lodash": "^4.17.11"
21
+ },
22
+ "devDependencies": {
23
+ "@types/jest": "^26",
24
+ "@types/lodash": "^4.14.126",
25
+ "@types/node": "^14",
26
+ "typescript": "^4",
27
+ "@modern-js/plugin-testing": "^1.0.0-rc.11",
28
+ "@modern-js/module-tools": "^1.0.0-rc.11"
29
+ },
30
+ "sideEffects": false,
31
+ "modernConfig": {},
32
+ "publishConfig": {
33
+ "registry": "https://registry.npmjs.org/",
34
+ "access": "public"
35
+ },
36
+ "scripts": {
37
+ "new": "modern new",
38
+ "build": "modern build",
39
+ "test": "modern test --passWithNoTests"
40
+ }
41
+ }