@modern-js/plugin-garfish 2.0.0-beta.6 → 2.0.0-beta.7

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/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "2.0.0-beta.6",
14
+ "version": "2.0.0-beta.7",
15
15
  "jsnext:source": "./src/cli/index.ts",
16
16
  "types": "./dist/types/cli/index.d.ts",
17
17
  "typesVersions": {
@@ -60,10 +60,10 @@
60
60
  "garfish": "^1.8.1",
61
61
  "hoist-non-react-statics": "^3.3.2",
62
62
  "react-loadable": "^5.5.0",
63
- "@modern-js/utils": "2.0.0-beta.6"
63
+ "@modern-js/utils": "2.0.0-beta.7"
64
64
  },
65
65
  "peerDependencies": {
66
- "@modern-js/runtime": "^2.0.0-beta.6"
66
+ "@modern-js/runtime": "^2.0.0-beta.7"
67
67
  },
68
68
  "peerDependenciesMeta": {
69
69
  "@modern-js/runtime": {
@@ -85,13 +85,13 @@
85
85
  "react-router-dom": "^6.6.0",
86
86
  "typescript": "^4",
87
87
  "webpack-chain": "^6.5.1",
88
- "@modern-js/app-tools": "2.0.0-beta.6",
89
- "@modern-js/core": "2.0.0-beta.6",
90
- "@modern-js/plugin-router-v5": "2.0.0-beta.6",
91
- "@modern-js/runtime": "2.0.0-beta.6",
92
- "@modern-js/types": "2.0.0-beta.6",
93
- "@scripts/build": "2.0.0-beta.6",
94
- "@scripts/jest-config": "2.0.0-beta.6"
88
+ "@modern-js/app-tools": "2.0.0-beta.7",
89
+ "@modern-js/core": "2.0.0-beta.7",
90
+ "@modern-js/runtime": "2.0.0-beta.7",
91
+ "@modern-js/plugin-router-v5": "2.0.0-beta.7",
92
+ "@modern-js/types": "2.0.0-beta.7",
93
+ "@scripts/build": "2.0.0-beta.7",
94
+ "@scripts/jest-config": "2.0.0-beta.7"
95
95
  },
96
96
  "sideEffects": false,
97
97
  "modernConfig": {},
@@ -102,6 +102,7 @@
102
102
  "scripts": {
103
103
  "new": "modern-lib new",
104
104
  "build": "modern-lib build",
105
+ "dev": "modern-lib build --watch",
105
106
  "build:watch": "rm -rf ./dist && modern build --watch",
106
107
  "test": "jest --passWithNoTests"
107
108
  }
package/type.d.ts CHANGED
@@ -10,3 +10,8 @@ declare module '@modern-js/runtime' {
10
10
  masterApp?: Config;
11
11
  }
12
12
  }
13
+ declare module '@modern-js/app-tools' {
14
+ interface RuntimeUserConfig {
15
+ masterApp?: Config;
16
+ }
17
+ }
File without changes
File without changes
@@ -1 +0,0 @@
1
- "use strict";
@@ -1,6 +0,0 @@
1
- import { Config as MasterAppConfig } from '../runtime/useModuleApps';
2
- declare module '@modern-js/app-tools' {
3
- interface RuntimeUserConfig {
4
- masterApp?: MasterAppConfig;
5
- }
6
- }