@angular-devkit/build-webpack 0.1901.2 → 0.1901.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/build-webpack",
3
- "version": "0.1901.2",
3
+ "version": "0.1901.4",
4
4
  "description": "Webpack Builder for Architect",
5
5
  "experimental": true,
6
6
  "main": "src/index.js",
@@ -16,7 +16,7 @@
16
16
  "./*.js": "./*.js"
17
17
  },
18
18
  "dependencies": {
19
- "@angular-devkit/architect": "0.1901.2",
19
+ "@angular-devkit/architect": "0.1901.4",
20
20
  "rxjs": "7.8.1"
21
21
  },
22
22
  "peerDependencies": {
@@ -6,7 +6,6 @@
6
6
  * found in the LICENSE file at https://angular.dev/license
7
7
  */
8
8
  import { Builder, BuilderContext, BuilderOutput } from '@angular-devkit/architect';
9
- import { json } from '@angular-devkit/core';
10
9
  import { Observable } from 'rxjs';
11
10
  import webpack from 'webpack';
12
11
  import { EmittedFiles } from '../../utils';
@@ -28,5 +27,5 @@ export declare function runWebpack(config: webpack.Configuration, context: Build
28
27
  webpackFactory?: WebpackFactory;
29
28
  shouldProvideStats?: boolean;
30
29
  }): Observable<BuildResult>;
31
- declare const builder: Builder<WebpackBuilderSchema & json.JsonObject>;
30
+ declare const builder: Builder<WebpackBuilderSchema>;
32
31
  export default builder;
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Webpack Builder schema for Architect.
3
3
  */
4
- export interface Schema {
4
+ export type Schema = {
5
5
  /**
6
6
  * The path to the Webpack configuration file.
7
7
  */
8
8
  webpackConfig: string;
9
- }
9
+ };
@@ -6,7 +6,6 @@
6
6
  * found in the LICENSE file at https://angular.dev/license
7
7
  */
8
8
  import { Builder, BuilderContext } from '@angular-devkit/architect';
9
- import { json } from '@angular-devkit/core';
10
9
  import { Observable } from 'rxjs';
11
10
  import webpack from 'webpack';
12
11
  import WebpackDevServer from 'webpack-dev-server';
@@ -25,5 +24,5 @@ export declare function runWebpackDevServer(config: webpack.Configuration, conte
25
24
  webpackFactory?: WebpackFactory;
26
25
  webpackDevServerFactory?: WebpackDevServerFactory;
27
26
  }): Observable<DevServerBuildOutput>;
28
- declare const builder: Builder<WebpackDevServerBuilderSchema & json.JsonObject>;
27
+ declare const builder: Builder<WebpackDevServerBuilderSchema>;
29
28
  export default builder;
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Webpack Dev-Server Builder schema for Architect.
3
3
  */
4
- export interface Schema {
4
+ export type Schema = {
5
5
  /**
6
6
  * The path to the Webpack configuration file.
7
7
  */
8
8
  webpackConfig: string;
9
- }
9
+ };