@smapiot/pilet-template-angular 1.0.17 → 1.0.18-beta.8445c7e

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2019 - 2025 smapiot
3
+ Copyright (c) 2019 - 2026 smapiot
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/lib/index.js CHANGED
@@ -542,9 +542,9 @@ var require_parent = __commonJS({
542
542
  }
543
543
  });
544
544
 
545
- // ../../node_modules/ejs/lib/utils.js
545
+ // ../../packages/template-utils/node_modules/ejs/lib/utils.js
546
546
  var require_utils2 = __commonJS({
547
- "../../node_modules/ejs/lib/utils.js"(exports2) {
547
+ "../../packages/template-utils/node_modules/ejs/lib/utils.js"(exports2) {
548
548
  "use strict";
549
549
  var regExpChars = /[|\\{}()[\]^$+*?.]/g;
550
550
  exports2.escapeRegExpChars = function(string) {
@@ -616,9 +616,9 @@ function encode_char(c) {
616
616
  }
617
617
  });
618
618
 
619
- // ../../node_modules/ejs/package.json
619
+ // ../../packages/template-utils/node_modules/ejs/package.json
620
620
  var require_package = __commonJS({
621
- "../../node_modules/ejs/package.json"(exports2, module2) {
621
+ "../../packages/template-utils/node_modules/ejs/package.json"(exports2, module2) {
622
622
  module2.exports = {
623
623
  name: "ejs",
624
624
  description: "Embedded JavaScript templates",
@@ -659,9 +659,9 @@ var require_package = __commonJS({
659
659
  }
660
660
  });
661
661
 
662
- // ../../node_modules/ejs/lib/ejs.js
662
+ // ../../packages/template-utils/node_modules/ejs/lib/ejs.js
663
663
  var require_ejs = __commonJS({
664
- "../../node_modules/ejs/lib/ejs.js"(exports2) {
664
+ "../../packages/template-utils/node_modules/ejs/lib/ejs.js"(exports2) {
665
665
  "use strict";
666
666
  var fs = require("fs");
667
667
  var path = require("path");
@@ -1485,7 +1485,8 @@ var tsVersions = {
1485
1485
  18: "~5.5",
1486
1486
  19: "~5.7",
1487
1487
  20: "~5.8",
1488
- 21: "~5.9"
1488
+ 21: "~5.9",
1489
+ 22: "~6.0"
1489
1490
  };
1490
1491
  var rxjsVersions = {
1491
1492
  2: "^5.0",
@@ -1506,7 +1507,8 @@ var rxjsVersions = {
1506
1507
  18: "^7.4",
1507
1508
  19: "^7.4",
1508
1509
  20: "^7.4",
1509
- 21: "^7.4"
1510
+ 21: "^7.4",
1511
+ 22: "^7.4"
1510
1512
  };
1511
1513
  var zoneVersions = {
1512
1514
  2: "~0.9",
@@ -1527,7 +1529,8 @@ var zoneVersions = {
1527
1529
  18: "~0.14",
1528
1530
  19: "~0.15",
1529
1531
  20: "~0.15",
1530
- 21: false
1532
+ 21: false,
1533
+ 22: false
1531
1534
  };
1532
1535
 
1533
1536
  // src/helpers.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smapiot/pilet-template-angular",
3
- "version": "1.0.17",
3
+ "version": "1.0.18-beta.8445c7e",
4
4
  "description": "Official scaffolding template for pilets: 'angular'.",
5
5
  "keywords": [
6
6
  "piral-cli",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "repository": {
50
50
  "type": "git",
51
- "url": "git+https://github.com/smapiot/piral-templates.git"
51
+ "url": "https://github.com/smapiot/piral-templates.git"
52
52
  },
53
53
  "bugs": {
54
54
  "url": "https://github.com/smapiot/piral-templates/issues"
@@ -59,7 +59,7 @@
59
59
  "test": "echo \"Error: run tests from root\" && exit 1"
60
60
  },
61
61
  "devDependencies": {
62
- "@smapiot/template-utils": "^1.0.17"
62
+ "@smapiot/template-utils": "1.0.18-beta.8445c7e"
63
63
  },
64
- "gitHead": "eb7210cf002ada02748dde32b715bc88cc85276c"
64
+ "gitHead": "8445c7e2d3e950ebf24f5cd90c9b521dff4174fd"
65
65
  }
package/src/versions.ts CHANGED
@@ -21,6 +21,7 @@ export const tsVersions = {
21
21
  19: '~5.7',
22
22
  20: '~5.8',
23
23
  21: '~5.9',
24
+ 22: '~6.0',
24
25
  };
25
26
 
26
27
  // Mapping of Angular to RxJs versions
@@ -44,6 +45,7 @@ export const rxjsVersions = {
44
45
  19: '^7.4',
45
46
  20: '^7.4',
46
47
  21: '^7.4',
48
+ 22: '^7.4',
47
49
  };
48
50
 
49
51
  // Mapping of Angular to Zone.js versions
@@ -67,4 +69,5 @@ export const zoneVersions = {
67
69
  19: '~0.15',
68
70
  20: '~0.15',
69
71
  21: false,
72
+ 22: false,
70
73
  };
@@ -15,6 +15,7 @@
15
15
  "moduleResolution": "Bundler",
16
16
  "module": "esnext",
17
17
  "jsx": "react",
18
+ "rootDir": ".",
18
19
  "importHelpers": true
19
20
  },
20
21
  "include": [