@modern-js/types 1.5.0 → 1.5.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,11 @@
1
1
  # @modern-js/types
2
2
 
3
+ ## 1.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3d1fac2a: chore: app-tools no longer depend on webpack
8
+
3
9
  ## 1.5.0
4
10
 
5
11
  ### Minor Changes
package/cli/index.d.ts CHANGED
@@ -2,8 +2,6 @@ import { AsyncWaterfall, AsyncWorkflow } from '@modern-js/plugin';
2
2
  import { Compiler, MultiCompiler, Configuration } from 'webpack';
3
3
  import { ServerRoute } from '../server';
4
4
 
5
- export type { Compiler, MultiCompiler, Configuration };
6
-
7
5
  /**
8
6
  * Bundle entrypoint
9
7
  */
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.5.0",
14
+ "version": "1.5.1",
15
15
  "types": "./index.d.ts",
16
16
  "dependencies": {
17
17
  "@modern-js/plugin": "^1.3.3",
package/tsconfig.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "baseUrl": "./",
7
7
  "paths": {}
8
8
  },
9
- "include": ["src"]
9
+ "include": ["cli", "server"]
10
10
  }