ngx-devkit-builders 0.0.6 → 0.1.0
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 +1 -1
- package/README.md +3 -3
- package/package.json +3 -3
- package/version/index.js +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
[](https://badge.fury.io/js/ngx-devkit-builders)
|
|
7
7
|
[](https://www.npmjs.com/ngx-devkit-builders)
|
|
8
8
|
[](https://www.npmjs.com/ngx-devkit-builders)
|
|
9
|
-
[](https://snyk.io/advisor/npm-package/ngx-devkit-builders)
|
|
10
10
|
[](https://github.com/celtian/ngx-devkit-builders/)
|
|
11
11
|
[](https://github.com/celtian/ngx-devkit-builders/)
|
|
12
12
|
[](http://hits.dwyl.com/celtian/ngx-devkit-builders)
|
|
13
13
|
|
|
14
14
|
This package contains Architect builders used to build and test Angular applications and libraries.
|
|
15
15
|
|
|
16
|
-
> ✓ _Angular
|
|
16
|
+
> ✓ _Angular 16 compatible_
|
|
17
17
|
|
|
18
18
|
## Builders
|
|
19
19
|
|
|
@@ -58,7 +58,7 @@ ng run your-project-name:version
|
|
|
58
58
|
|
|
59
59
|
## License
|
|
60
60
|
|
|
61
|
-
Copyright © 2022 [Dominik Hladik](https://github.com/Celtian)
|
|
61
|
+
Copyright © 2022 - 2023 [Dominik Hladik](https://github.com/Celtian)
|
|
62
62
|
|
|
63
63
|
All contents are licensed under the [MIT license].
|
|
64
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-devkit-builders",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Dominik Hladík",
|
|
6
6
|
"email": "dominik.hladik@seznam.cz",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"builders": "builders.json",
|
|
13
13
|
"scripts": {},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@angular-devkit/architect": "^0.
|
|
16
|
-
"@angular-devkit/core": "^
|
|
15
|
+
"@angular-devkit/architect": "^0.1602.0",
|
|
16
|
+
"@angular-devkit/core": "^16.2.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {},
|
|
19
19
|
"homepage": "https://github.com/Celtian/ngx-devkit-builders#readme",
|
package/version/index.js
CHANGED
|
@@ -35,7 +35,7 @@ exports.default = (0, architect_1.createBuilder)(({ outputFile, fields, lint, va
|
|
|
35
35
|
ctx.logger.info(generalError);
|
|
36
36
|
ctx.logger.error(`${headFile} was not found`);
|
|
37
37
|
return {
|
|
38
|
-
success: false
|
|
38
|
+
success: false,
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
let commit = (0, fs_1.readFileSync)(headFile).toString().trim();
|
|
@@ -49,7 +49,7 @@ exports.default = (0, architect_1.createBuilder)(({ outputFile, fields, lint, va
|
|
|
49
49
|
ctx.logger.info(generalError);
|
|
50
50
|
ctx.logger.error(`${refFile} was not found`);
|
|
51
51
|
return {
|
|
52
|
-
success: false
|
|
52
|
+
success: false,
|
|
53
53
|
};
|
|
54
54
|
}
|
|
55
55
|
commit = (0, fs_1.readFileSync)(refFile).toString().trim();
|
|
@@ -79,11 +79,11 @@ export const ${variable} = ${json};
|
|
|
79
79
|
ctx.logger.info(generalError);
|
|
80
80
|
ctx.logger.error(JSON.stringify(error, null, 2));
|
|
81
81
|
return {
|
|
82
|
-
success: false
|
|
82
|
+
success: false,
|
|
83
83
|
};
|
|
84
84
|
}
|
|
85
85
|
ctx.logger.info(`✔️ Version information file successfully created in ${targetFile}`);
|
|
86
86
|
return {
|
|
87
|
-
success: true
|
|
87
|
+
success: true,
|
|
88
88
|
};
|
|
89
89
|
});
|