@smapiot/pilet-template-angular 1.0.12-beta.7845 → 1.0.12

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 - 2024 smapiot
3
+ Copyright (c) 2019 - 2025 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
@@ -1495,7 +1495,9 @@ var tsVersions = {
1495
1495
  14: "~4.7",
1496
1496
  15: "~4.8",
1497
1497
  16: "~4.9",
1498
- 17: "~5.2"
1498
+ 17: "~5.2",
1499
+ 18: "~5.5",
1500
+ 19: "~5.7"
1499
1501
  };
1500
1502
  var rxjsVersions = {
1501
1503
  2: "^5.0",
@@ -1512,7 +1514,9 @@ var rxjsVersions = {
1512
1514
  14: "^7.4",
1513
1515
  15: "^7.4",
1514
1516
  16: "^7.4",
1515
- 17: "^7.4"
1517
+ 17: "^7.4",
1518
+ 18: "^7.4",
1519
+ 19: "^7.4"
1516
1520
  };
1517
1521
  var zoneVersions = {
1518
1522
  2: "~0.9",
@@ -1529,7 +1533,9 @@ var zoneVersions = {
1529
1533
  14: "0.12.0",
1530
1534
  15: "0.13.0",
1531
1535
  16: "0.13.0",
1532
- 17: "0.14.0"
1536
+ 17: "~0.14",
1537
+ 18: "~0.14",
1538
+ 19: "~0.15"
1533
1539
  };
1534
1540
 
1535
1541
  // src/helpers.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smapiot/pilet-template-angular",
3
- "version": "1.0.12-beta.7845",
3
+ "version": "1.0.12",
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": "1.0.12-beta.7845"
57
+ "@smapiot/template-utils": "^1.0.12"
58
58
  },
59
- "gitHead": "46a3217b7197c599d38929f71d2714c9615c9f7d"
59
+ "gitHead": "a18cf3624cf5da842e8916653970ac192490efad"
60
60
  }
package/src/versions.ts CHANGED
@@ -1,3 +1,5 @@
1
+ // Source: https://angular.dev/reference/versions
2
+
1
3
  // Mapping of Angular to TypeScript versions
2
4
  export const tsVersions = {
3
5
  2: '~2.0',
@@ -15,6 +17,8 @@ export const tsVersions = {
15
17
  15: '~4.8',
16
18
  16: '~4.9',
17
19
  17: '~5.2',
20
+ 18: '~5.5',
21
+ 19: '~5.7',
18
22
  };
19
23
 
20
24
  // Mapping of Angular to RxJs versions
@@ -34,6 +38,8 @@ export const rxjsVersions = {
34
38
  15: '^7.4',
35
39
  16: '^7.4',
36
40
  17: '^7.4',
41
+ 18: '^7.4',
42
+ 19: '^7.4',
37
43
  };
38
44
 
39
45
  // Mapping of Angular to Zone.js versions
@@ -52,5 +58,7 @@ export const zoneVersions = {
52
58
  14: '0.12.0',
53
59
  15: '0.13.0',
54
60
  16: '0.13.0',
55
- 17: '0.14.0',
61
+ 17: '~0.14',
62
+ 18: '~0.14',
63
+ 19: '~0.15',
56
64
  };