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 CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Celtian
3
+ Copyright (c) 2022 - 2023 Celtian
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/README.md CHANGED
@@ -6,14 +6,14 @@
6
6
  [![npm version](https://badge.fury.io/js/ngx-devkit-builders.svg)](https://badge.fury.io/js/ngx-devkit-builders)
7
7
  [![Package License](https://img.shields.io/npm/l/ngx-devkit-builders.svg)](https://www.npmjs.com/ngx-devkit-builders)
8
8
  [![NPM Downloads](https://img.shields.io/npm/dm/ngx-devkit-builders.svg)](https://www.npmjs.com/ngx-devkit-builders)
9
- [![Build & Publish](https://github.com/celtian/ngx-devkit-builders/workflows/Build%20&%20Publish/badge.svg)](https://github.com/celtian/ngx-devkit-builders/actions)
9
+ [![Snyk](https://snyk.io/advisor/npm-package/ngx-devkit-builders/badge.svg)](https://snyk.io/advisor/npm-package/ngx-devkit-builders)
10
10
  [![stars](https://badgen.net/github/stars/celtian/ngx-devkit-builders)](https://github.com/celtian/ngx-devkit-builders/)
11
11
  [![forks](https://badgen.net/github/forks/celtian/ngx-devkit-builders)](https://github.com/celtian/ngx-devkit-builders/)
12
12
  [![HitCount](http://hits.dwyl.com/celtian/ngx-devkit-builders.svg)](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 15 compatible_
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.6",
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.1500.4",
16
- "@angular-devkit/core": "^15.0.4"
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
  });