Skip to content

Commit 921b345

Browse files
committed
r0b08x [chore] 5/4/2024, 4:37:05 PM
1 parent 9d0a6f8 commit 921b345

File tree

3 files changed

+119
-108
lines changed

3 files changed

+119
-108
lines changed

.ncurc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"zone.js",
88
"typescript",
99
"karma",
10-
"ng-packagr"
10+
"ng-packagr",
11+
"eslint"
1112
]
1213
}

README.md

+18-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88

9-
# 🆖 Angular Dynamic Compile - Convert strings to Angular components v2024.4.117
9+
# 🆖 Angular Dynamic Compile - Convert strings to Angular components v2024.4.122
1010

1111

1212

@@ -20,7 +20,7 @@
2020
### Built on NodeJs version
2121

2222
```txt
23-
v20.12.0
23+
v22.1.0
2424
```
2525

2626

@@ -29,7 +29,7 @@ v20.12.0
2929
# Built on Angular
3030

3131
```text
32-
17.3.1
32+
17.3.7
3333
```
3434

3535

@@ -296,18 +296,28 @@ If you want very small bundle, use ```gzip```.
296296

297297
---
298298

299-
🙏 This is an open-source project. Star this repository, if you like it, or even donate to maintain the servers and the development. Thank you so much!
300299

301-
Possible, this server, rarely, is down, please, hang on for 15-30 minutes and the server will be back up.
300+
## Support Our Open-Source Project ❤️
301+
If you appreciate our work, consider starring this repository or making a donation to support server maintenance and ongoing development. Your support means the world to us—thank you!
302302

303-
All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://corifeus.com)) could have minor errors, since I am developing in my free time. However, it is usually stable.
303+
### Server Availability
304+
Our server may occasionally be down, but please be patient. Typically, it will be back online within 15-30 minutes. We appreciate your understanding.
304305

305-
**Note about versioning:** Versions are cut in Major.Minor.Patch schema. Major is always the current year. Minor is either 4 (January - June) or 10 (July - December). Patch is incremental by every build. If there is a breaking change, it should be noted in the readme.
306+
### About My Domains
307+
All my domains, including [patrikx3.com](https://patrikx3.com) and [corifeus.com](https://corifeus.com), are developed in my spare time. While you may encounter minor errors, the sites are generally stable and fully functional.
306308

309+
### Versioning Policy
310+
**Version Structure:** We follow a Major.Minor.Patch versioning scheme:
311+
- **Major:** Corresponds to the current year.
312+
- **Minor:** Set as 4 for releases from January to June, and 10 for July to December.
313+
- **Patch:** Incremental, updated with each build.
314+
315+
**Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
307316

308317
---
309318

310-
[**P3X-ANGULAR-COMPILE**](https://corifeus.com/angular-compile) Build v2024.4.117
319+
320+
[**P3X-ANGULAR-COMPILE**](https://corifeus.com/angular-compile) Build v2024.4.122
311321

312322
[![NPM](https://img.shields.io/npm/v/p3x-angular-compile.svg)](https://www.npmjs.com/package/p3x-angular-compile) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
313323

package.json

+99-99
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,100 @@
11
{
2-
"name": "p3x-angular-compile",
3-
"version": "2024.4.117",
4-
"corifeus": {
5-
"prefix": "p3x-",
6-
"publish": true,
7-
"type": "p3x",
8-
"code": "Logico",
9-
"nodejs": "v20.12.0",
10-
"opencollective": false,
11-
"reponame": "angular-compile",
12-
"build": true,
13-
"cdn": true,
14-
"angular": "17.3.1",
15-
"publish-location": "./dist/angular-compile"
16-
},
17-
"description": "🆖 Angular Dynamic Compile - Convert strings to Angular components",
18-
"scripts": {
19-
"ng": "ng",
20-
"start": "ng serve --hmr",
21-
"build": "ng build",
22-
"test": "grunt",
23-
"lint": "ng lint",
24-
"e2e": "ng e2e",
25-
"build-lib": "mkdirp ./dist/angular-compile && ncp ./projects/angular-compile/src ./dist/angular-compile && ncp ./projects/angular-compile/package.json ./dist/angular-compile/package.json && cp README.md ./dist/angular-compile && cp LICENSE ./dist/angular-compile && node node_modules/corifeus-builder/src/utils/angular/post-lib-build.js",
26-
"build-lib-old": "ng build --configuration=production --project angular-compile && cp README.md ./dist/angular-compile && cp LICENSE ./dist/angular-compile && node node_modules/corifeus-builder/src/utils/angular/post-lib-build.js",
27-
"build-app-info": "Have to disable AOT for this build",
28-
"build-app": "ng build --configuration=production --source-map=false --output-hashing=all --base-href=/ --aot=false --build-optimizer=false --optimization=true && grunt htmlmin:dist",
29-
"stats": "ng build --stats-json && webpack-bundle-analyzer dist/angular-compile-workspace/stats.json"
30-
},
31-
"repository": {
32-
"type": "git",
33-
"url": "git+https://github.com/patrikx3/angular-compile.git"
34-
},
35-
"keywords": [
36-
"p3x",
37-
"angular",
38-
"ng",
39-
"compile",
40-
"html",
41-
"angular",
42-
"dynamic",
43-
"aot"
44-
],
45-
"author": "Patrik Laszlo <[email protected]>",
46-
"license": "MIT",
47-
"bugs": {
48-
"url": "https://github.com/patrikx3/angular-compile/issues"
49-
},
50-
"homepage": "https://corifeus.com/angular-compile",
51-
"dependencies": {
52-
"@angular/animations": "^17.3.5",
53-
"@angular/cdk": "^17.3.5",
54-
"@angular/common": "^17.3.5",
55-
"@angular/compiler": "^17.3.5",
56-
"@angular/core": "^17.3.5",
57-
"@angular/forms": "^17.3.5",
58-
"@angular/material": "^17.3.5",
59-
"@angular/platform-browser": "^17.3.5",
60-
"@angular/platform-browser-dynamic": "^17.3.5",
61-
"@angular/router": "^17.3.5",
62-
"postcss": "^8.4.38",
63-
"rxjs": "~6.6.3",
64-
"tslib": "^2.2.0",
65-
"zone.js": "~0.14.2"
66-
},
67-
"devDependencies": {
68-
"@angular-devkit/build-angular": "^17.3.5",
69-
"@angular/cli": "^17.3.5",
70-
"@angular/compiler-cli": "^17.3.5",
71-
"@types/jasmine": "~5.1.4",
72-
"@types/jasminewd2": "~2.0.13",
73-
"@types/node": "^20.12.7",
74-
"@typescript-eslint/eslint-plugin": "7.7.0",
75-
"@typescript-eslint/parser": "7.7.0",
76-
"codelyzer": "^6.0.2",
77-
"corifeus-builder": "^2024.4.131",
78-
"eslint": "^8.57.0",
79-
"eslint-plugin-import": "2.29.1",
80-
"eslint-plugin-jsdoc": "48.2.3",
81-
"eslint-plugin-prefer-arrow": "1.2.3",
82-
"jasmine-core": "~5.1.2",
83-
"jasmine-spec-reporter": "~7.0.0",
84-
"karma": "~6.3.2",
85-
"karma-chrome-launcher": "~3.2.0",
86-
"karma-coverage-istanbul-reporter": "~3.0.3",
87-
"karma-jasmine": "~5.1.0",
88-
"karma-jasmine-html-reporter": "^2.1.0",
89-
"mkdirp": "^3.0.1",
90-
"ncp": "^2.0.0",
91-
"ng-packagr": "^17.0.2",
92-
"protractor": "~7.0.0",
93-
"ts-node": "~10.9.2",
94-
"typescript": "~5.2.2",
95-
"webpack-bundle-analyzer": "^4.10.2"
96-
},
97-
"engines": {
98-
"node": ">=12.13.0"
99-
}
100-
}
2+
"name": "p3x-angular-compile",
3+
"version": "2024.4.122",
4+
"corifeus": {
5+
"prefix": "p3x-",
6+
"publish": true,
7+
"type": "p3x",
8+
"code": "Logico",
9+
"nodejs": "v22.1.0",
10+
"opencollective": false,
11+
"reponame": "angular-compile",
12+
"build": true,
13+
"cdn": true,
14+
"angular": "17.3.7",
15+
"publish-location": "./dist/angular-compile"
16+
},
17+
"description": "🆖 Angular Dynamic Compile - Convert strings to Angular components",
18+
"scripts": {
19+
"ng": "ng",
20+
"start": "ng serve --hmr",
21+
"build": "ng build",
22+
"test": "grunt",
23+
"lint": "ng lint",
24+
"e2e": "ng e2e",
25+
"build-lib": "mkdirp ./dist/angular-compile && ncp ./projects/angular-compile/src ./dist/angular-compile && ncp ./projects/angular-compile/package.json ./dist/angular-compile/package.json && cp README.md ./dist/angular-compile && cp LICENSE ./dist/angular-compile && node node_modules/corifeus-builder/src/utils/angular/post-lib-build.js",
26+
"build-lib-old": "ng build --configuration=production --project angular-compile && cp README.md ./dist/angular-compile && cp LICENSE ./dist/angular-compile && node node_modules/corifeus-builder/src/utils/angular/post-lib-build.js",
27+
"build-app-info": "Have to disable AOT for this build",
28+
"build-app": "ng build --configuration=production --source-map=false --output-hashing=all --base-href=/ --aot=false --build-optimizer=false --optimization=true && grunt htmlmin:dist",
29+
"stats": "ng build --stats-json && webpack-bundle-analyzer dist/angular-compile-workspace/stats.json"
30+
},
31+
"repository": {
32+
"type": "git",
33+
"url": "git+https://github.com/patrikx3/angular-compile.git"
34+
},
35+
"keywords": [
36+
"p3x",
37+
"angular",
38+
"ng",
39+
"compile",
40+
"html",
41+
"angular",
42+
"dynamic",
43+
"aot"
44+
],
45+
"author": "Patrik Laszlo <[email protected]>",
46+
"license": "MIT",
47+
"bugs": {
48+
"url": "https://github.com/patrikx3/angular-compile/issues"
49+
},
50+
"homepage": "https://corifeus.com/angular-compile",
51+
"dependencies": {
52+
"@angular/animations": "^17.3.7",
53+
"@angular/cdk": "^17.3.7",
54+
"@angular/common": "^17.3.7",
55+
"@angular/compiler": "^17.3.7",
56+
"@angular/core": "^17.3.7",
57+
"@angular/forms": "^17.3.7",
58+
"@angular/material": "^17.3.7",
59+
"@angular/platform-browser": "^17.3.7",
60+
"@angular/platform-browser-dynamic": "^17.3.7",
61+
"@angular/router": "^17.3.7",
62+
"postcss": "^8.4.38",
63+
"rxjs": "~6.6.3",
64+
"tslib": "^2.2.0",
65+
"zone.js": "~0.14.2"
66+
},
67+
"devDependencies": {
68+
"@angular-devkit/build-angular": "^17.3.6",
69+
"@angular/cli": "^17.3.6",
70+
"@angular/compiler-cli": "^17.3.7",
71+
"@types/jasmine": "~5.1.4",
72+
"@types/jasminewd2": "~2.0.13",
73+
"@types/node": "^20.12.8",
74+
"@typescript-eslint/eslint-plugin": "7.8.0",
75+
"@typescript-eslint/parser": "7.8.0",
76+
"codelyzer": "^6.0.2",
77+
"corifeus-builder": "^2024.4.140",
78+
"eslint": "^8.57.0",
79+
"eslint-plugin-import": "2.29.1",
80+
"eslint-plugin-jsdoc": "48.2.3",
81+
"eslint-plugin-prefer-arrow": "1.2.3",
82+
"jasmine-core": "~5.1.2",
83+
"jasmine-spec-reporter": "~7.0.0",
84+
"karma": "~6.3.2",
85+
"karma-chrome-launcher": "~3.2.0",
86+
"karma-coverage-istanbul-reporter": "~3.0.3",
87+
"karma-jasmine": "~5.1.0",
88+
"karma-jasmine-html-reporter": "^2.1.0",
89+
"mkdirp": "^3.0.1",
90+
"ncp": "^2.0.0",
91+
"ng-packagr": "^17.0.2",
92+
"protractor": "~7.0.0",
93+
"ts-node": "~10.9.2",
94+
"typescript": "~5.2.2",
95+
"webpack-bundle-analyzer": "^4.10.2"
96+
},
97+
"engines": {
98+
"node": ">=12.13.0"
99+
}
100+
}

0 commit comments

Comments
 (0)