@modern-js/core 1.4.2 → 1.4.3

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,13 @@
1
1
  # @modern-js/core
2
2
 
3
+ ## 1.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 54786e58: add ts check
8
+ - Updated dependencies [deeaa602]
9
+ - @modern-js/utils@1.3.2
10
+
3
11
  ## 1.4.2
4
12
 
5
13
  ### Patch Changes
@@ -74,6 +74,9 @@ export const output = {
74
74
  scriptExt: {
75
75
  type: 'object'
76
76
  },
77
+ disableTsChecker: {
78
+ type: 'boolean'
79
+ },
77
80
  disableHtmlFolder: {
78
81
  type: 'boolean'
79
82
  },
@@ -82,6 +82,9 @@ const output = {
82
82
  scriptExt: {
83
83
  type: 'object'
84
84
  },
85
+ disableTsChecker: {
86
+ type: 'boolean'
87
+ },
85
88
  disableHtmlFolder: {
86
89
  type: 'boolean'
87
90
  },
@@ -40,6 +40,7 @@ interface OutputConfig {
40
40
  faviconByEntries?: Record<string, string | undefined>;
41
41
  copy?: Record<string, unknown>;
42
42
  scriptExt?: Record<string, unknown>;
43
+ disableTsChecker?: boolean;
43
44
  disableHtmlFolder?: boolean;
44
45
  disableCssModuleExtension?: boolean;
45
46
  disableCssExtract?: boolean;
@@ -140,6 +140,9 @@ export declare const patchSchema: (pluginSchemas: Array<PluginValidateSchema | P
140
140
  scriptExt: {
141
141
  type: string;
142
142
  };
143
+ disableTsChecker: {
144
+ type: string;
145
+ };
143
146
  disableHtmlFolder: {
144
147
  type: string;
145
148
  };
@@ -73,6 +73,9 @@ export declare const output: {
73
73
  scriptExt: {
74
74
  type: string;
75
75
  };
76
+ disableTsChecker: {
77
+ type: string;
78
+ };
76
79
  disableHtmlFolder: {
77
80
  type: string;
78
81
  };
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.4.2",
14
+ "version": "1.4.3",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -44,7 +44,7 @@
44
44
  "@babel/runtime": "^7",
45
45
  "@modern-js/load-config": "^1.2.1",
46
46
  "@modern-js/plugin": "^1.2.1",
47
- "@modern-js/utils": "^1.3.1",
47
+ "@modern-js/utils": "^1.3.2",
48
48
  "address": "^1.1.2",
49
49
  "ajv": "^8.6.2",
50
50
  "ajv-keywords": "^5.0.0",
@@ -62,7 +62,7 @@
62
62
  "devDependencies": {
63
63
  "btsm": "2.2.2",
64
64
  "@types/babel__code-frame": "^7.0.3",
65
- "@modern-js/types": "^1.3.2",
65
+ "@modern-js/types": "^1.3.3",
66
66
  "@types/jest": "^26",
67
67
  "@types/lodash.clonedeep": "^4.5.6",
68
68
  "@types/lodash.mergewith": "^4.6.6",