@smapiot/pilet-template-angular 0.15.0-beta.4611 → 0.15.0-beta.4612

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/lib/index.js CHANGED
@@ -1302,7 +1302,6 @@ function getStandalonePackageJson(cliVersion, ngVersion) {
1302
1302
  importmap: {
1303
1303
  imports: {
1304
1304
  "@angular/animations": ".",
1305
- "@angular/cli": ".",
1306
1305
  "@angular/common": ".",
1307
1306
  "@angular/compiler": ".",
1308
1307
  "@angular/core": ".",
@@ -1314,7 +1313,6 @@ function getStandalonePackageJson(cliVersion, ngVersion) {
1314
1313
  },
1315
1314
  dependencies: {
1316
1315
  "@angular/animations": ngVersion,
1317
- "@angular/cli": ngVersion,
1318
1316
  "@angular/common": ngVersion,
1319
1317
  "@angular/compiler": ngVersion,
1320
1318
  "@angular/core": ngVersion,
@@ -1328,6 +1326,7 @@ function getStandalonePackageJson(cliVersion, ngVersion) {
1328
1326
  },
1329
1327
  devDependencies: {
1330
1328
  "@angular/compiler-cli": ngVersion,
1329
+ "@angular/cli": ngVersion,
1331
1330
  "@ngtools/webpack": ngVersion,
1332
1331
  "copy-webpack-plugin": "^10",
1333
1332
  "html-loader": "^3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smapiot/pilet-template-angular",
3
- "version": "0.15.0-beta.4611",
3
+ "version": "0.15.0-beta.4612",
4
4
  "description": "Official scaffolding template for pilets: 'angular'.",
5
5
  "keywords": [
6
6
  "piral-cli",
@@ -54,7 +54,7 @@
54
54
  "test": "echo \"Error: run tests from root\" && exit 1"
55
55
  },
56
56
  "devDependencies": {
57
- "@smapiot/template-utils": "0.15.0-beta.4611"
57
+ "@smapiot/template-utils": "0.15.0-beta.4612"
58
58
  },
59
- "gitHead": "3884a484ec7819ec8f42aa09dafb8d09e445cd14"
59
+ "gitHead": "db607eec793052dc290cad47c373b08848ad8703"
60
60
  }
package/src/helpers.ts CHANGED
@@ -28,7 +28,6 @@ export function getStandalonePackageJson(cliVersion: string, ngVersion: string)
28
28
  importmap: {
29
29
  imports: {
30
30
  '@angular/animations': '.',
31
- '@angular/cli': '.',
32
31
  '@angular/common': '.',
33
32
  '@angular/compiler': '.',
34
33
  '@angular/core': '.',
@@ -40,7 +39,6 @@ export function getStandalonePackageJson(cliVersion: string, ngVersion: string)
40
39
  },
41
40
  dependencies: {
42
41
  '@angular/animations': ngVersion,
43
- '@angular/cli': ngVersion,
44
42
  '@angular/common': ngVersion,
45
43
  '@angular/compiler': ngVersion,
46
44
  '@angular/core': ngVersion,
@@ -54,6 +52,7 @@ export function getStandalonePackageJson(cliVersion: string, ngVersion: string)
54
52
  },
55
53
  devDependencies: {
56
54
  '@angular/compiler-cli': ngVersion,
55
+ '@angular/cli': ngVersion,
57
56
  '@ngtools/webpack': ngVersion,
58
57
  'copy-webpack-plugin': '^10',
59
58
  'html-loader': '^3',
@@ -1,4 +1,5 @@
1
1
  <% if (standalone) { -%>
2
+ import '@angular/compiler';
2
3
  import { defineNgModule, fromNg } from 'piral-ng/convert';
3
4
  <% } -%>
4
5
  import { AppModule } from './app/app.module';