@modern-js/types 1.4.0 → 1.5.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/.eslintrc.js ADDED
@@ -0,0 +1,8 @@
1
+ module.exports = {
2
+ root: true,
3
+ extends: ['@modern-js'],
4
+ parserOptions: {
5
+ tsconfigRootDir: __dirname,
6
+ project: ['./tsconfig.json'],
7
+ },
8
+ };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @modern-js/types
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3bf4f8b0: feat: support start api server only
8
+
9
+ ### Patch Changes
10
+
11
+ - 6cffe99d: chore:
12
+ remove react eslint rules for `modern-js` rule set.
13
+ add .eslintrc for each package to speed up linting
14
+ - 60f7d8bf: feat: add tests dir to npmignore
15
+ - Updated dependencies [6cffe99d]
16
+ - Updated dependencies [60f7d8bf]
17
+ - @modern-js/plugin@1.3.3
18
+
3
19
  ## 1.4.0
4
20
 
5
21
  ### Minor Changes
package/cli/index.d.ts CHANGED
@@ -65,7 +65,7 @@ export interface IAppContext {
65
65
  checkedEntries: string[];
66
66
  serverRoutes: ServerRoute[];
67
67
  htmlTemplates: HtmlTemplates;
68
- existSrc: boolean;
68
+ apiOnly: boolean;
69
69
  internalDirAlias: string;
70
70
  internalSrcAlias: string;
71
71
  }
package/package.json CHANGED
@@ -11,10 +11,10 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.4.0",
14
+ "version": "1.5.0",
15
15
  "types": "./index.d.ts",
16
16
  "dependencies": {
17
- "@modern-js/plugin": "^1.3.2",
17
+ "@modern-js/plugin": "^1.3.3",
18
18
  "http-proxy-middleware": "^2.0.4",
19
19
  "webpack": "^5.54.0"
20
20
  },