@angular-devkit/build-angular 0.803.7 → 0.803.8

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,19 +1,19 @@
1
1
  {
2
2
  "name": "@angular-devkit/build-angular",
3
- "version": "0.803.7",
3
+ "version": "0.803.8",
4
4
  "description": "Angular Webpack Build Facade",
5
5
  "experimental": true,
6
6
  "main": "src/index.js",
7
7
  "typings": "src/index.d.ts",
8
8
  "builders": "builders.json",
9
9
  "dependencies": {
10
- "@angular-devkit/architect": "0.803.7",
11
- "@angular-devkit/build-optimizer": "0.803.7",
12
- "@angular-devkit/build-webpack": "0.803.7",
13
- "@angular-devkit/core": "8.3.7",
10
+ "@angular-devkit/architect": "0.803.8",
11
+ "@angular-devkit/build-optimizer": "0.803.8",
12
+ "@angular-devkit/build-webpack": "0.803.8",
13
+ "@angular-devkit/core": "8.3.8",
14
14
  "@babel/core": "7.5.5",
15
15
  "@babel/preset-env": "7.5.5",
16
- "@ngtools/webpack": "8.3.7",
16
+ "@ngtools/webpack": "8.3.8",
17
17
  "ajv": "6.10.2",
18
18
  "autoprefixer": "9.6.1",
19
19
  "browserslist": "4.6.6",
@@ -71,7 +71,7 @@ async function execute(options, context) {
71
71
  if (options.webdriverUpdate) {
72
72
  await updateWebdriver();
73
73
  }
74
- let baseUrl;
74
+ let baseUrl = options.baseUrl;
75
75
  let server;
76
76
  if (options.devServerTarget) {
77
77
  const target = architect_1.targetFromTargetString(options.devServerTarget);
@@ -49,10 +49,9 @@ async function process(options) {
49
49
  inputSourceMap: !manualSourceMaps && options.map !== undefined && JSON.parse(options.map),
50
50
  babelrc: false,
51
51
  // modules aren't needed since the bundles use webpack's custom module loading
52
- // loose generates more ES5-like code but does not strictly adhere to the ES2015 spec (Typescript is loose)
53
52
  // 'transform-typeof-symbol' generates slower code
54
53
  presets: [
55
- ['@babel/preset-env', { modules: false, loose: true, exclude: ['transform-typeof-symbol'] }],
54
+ ['@babel/preset-env', { modules: false, exclude: ['transform-typeof-symbol'] }],
56
55
  ],
57
56
  minified: options.optimize,
58
57
  // `false` ensures it is disabled and prevents large file warnings