@modern-js/types 1.3.0 → 1.3.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @modern-js/types
2
2
 
3
+ ## 1.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 78279953: compiler entry bug fix and dev build console
8
+ - 4d72edea: support dev compiler by entry
9
+
3
10
  ## 1.3.0
4
11
 
5
12
  ### Minor Changes
package/cli/index.d.ts CHANGED
@@ -62,6 +62,7 @@ export interface IAppContext {
62
62
  serverPath?: any;
63
63
  }[];
64
64
  entrypoints: Entrypoint[];
65
+ checkedEntries: string[];
65
66
  serverRoutes: ServerRoute[];
66
67
  htmlTemplates: HtmlTemplates;
67
68
  existSrc: boolean;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.3.0",
14
+ "version": "1.3.1",
15
15
  "types": "./index.d.ts",
16
16
  "dependencies": {
17
17
  "@modern-js/plugin": "^1.2.1",
@@ -36,9 +36,7 @@
36
36
  "sideEffects": false,
37
37
  "publishConfig": {
38
38
  "registry": "https://registry.npmjs.org/",
39
- "access": "public",
40
- "main": "",
41
- "types": "./index.d.ts"
39
+ "access": "public"
42
40
  },
43
41
  "scripts": {
44
42
  "test": "jest --passWithNoTests"