@modern-js/server-utils 2.0.0-beta.7 → 2.0.0
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 +17 -0
- package/dist/types/common/index.d.ts +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @modern-js/server-utils
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- dda38c9c3e: chore: v2
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [edd1cfb1af]
|
|
12
|
+
- Updated dependencies [dda38c9c3e]
|
|
13
|
+
- Updated dependencies [ffb2ed4]
|
|
14
|
+
- Updated dependencies [bbe4c4ab64]
|
|
15
|
+
- @modern-js/utils@2.0.0
|
|
16
|
+
- @modern-js/babel-preset-lib@2.0.0
|
|
17
|
+
- @modern-js/babel-compiler@2.0.0
|
|
18
|
+
- @modern-js/plugin@2.0.0
|
|
19
|
+
|
|
3
20
|
## 2.0.0-beta.7
|
|
4
21
|
|
|
5
22
|
### Major Changes
|
|
@@ -18,6 +18,6 @@ export interface CompileOptions {
|
|
|
18
18
|
distDir: string;
|
|
19
19
|
tsconfigPath?: string;
|
|
20
20
|
}
|
|
21
|
-
export
|
|
21
|
+
export type CompileFunc = (appDirectory: string, modernConfig: IConfig, compileOptions: CompileOptions) => Promise<void>;
|
|
22
22
|
export declare const FILE_EXTENSIONS: string[];
|
|
23
23
|
export declare const compile: CompileFunc;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "2.0.0
|
|
14
|
+
"version": "2.0.0",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"@babel/runtime": "^7.18.0",
|
|
37
37
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
38
38
|
"babel-plugin-transform-typescript-metadata": "^0.3.2",
|
|
39
|
-
"@modern-js/babel-compiler": "2.0.0
|
|
40
|
-
"@modern-js/babel-preset-lib": "2.0.0
|
|
41
|
-
"@modern-js/plugin": "2.0.0
|
|
42
|
-
"@modern-js/utils": "2.0.0
|
|
39
|
+
"@modern-js/babel-compiler": "2.0.0",
|
|
40
|
+
"@modern-js/babel-preset-lib": "2.0.0",
|
|
41
|
+
"@modern-js/plugin": "2.0.0",
|
|
42
|
+
"@modern-js/utils": "2.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/babel__core": "^7.1.15",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"jest": "^27",
|
|
49
49
|
"ts-jest": "^27.0.4",
|
|
50
50
|
"typescript": "^4",
|
|
51
|
-
"@modern-js/server-core": "2.0.0
|
|
52
|
-
"@scripts/build": "2.0.0
|
|
53
|
-
"@scripts/jest-config": "2.0.0
|
|
51
|
+
"@modern-js/server-core": "2.0.0",
|
|
52
|
+
"@scripts/build": "2.0.0",
|
|
53
|
+
"@scripts/jest-config": "2.0.0"
|
|
54
54
|
},
|
|
55
55
|
"sideEffects": false,
|
|
56
56
|
"publishConfig": {
|