@ihk-gfi/lux-components-update 16.4.0 → 16.4.1

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.
@@ -15,6 +15,8 @@ const index_3 = require("../updates/16.0.1/index");
15
15
  const index_4 = require("../updates/16.1.0/index");
16
16
  const index_5 = require("../updates/16.2.0/index");
17
17
  const index_6 = require("../updates/16.3.0/index");
18
+ const index_7 = require("../updates/16.4.0/index");
19
+ const index_8 = require("../updates/16.4.1/index");
18
20
  const files_1 = require("../utility/files");
19
21
  const json_1 = require("../utility/json");
20
22
  const logging_1 = require("../utility/logging");
@@ -88,6 +90,8 @@ function addLuxComponents(options) {
88
90
  (0, index_4.update160100)(options, false),
89
91
  (0, index_5.update160200)(options, false),
90
92
  (0, index_6.update160300)(options, false),
93
+ (0, index_7.update160400)(options, false),
94
+ (0, index_8.update160401)(options, false),
91
95
  (0, util_1.finish)(true, `Die LUX-Components ${index_2.updateMajorVersion} wurden erfolgreich eingerichtet.`, `${chalk.yellowBright('Fertig!')}`)
92
96
  ]);
93
97
  };
package/collection.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json",
3
3
  "schematics": {
4
+ "update-16.4.1": {
5
+ "description": "Aktualisiert das LUX-Componentsprojekt auf die Version 16.4.1",
6
+ "factory": "./updates/16.4.1/index#update160401",
7
+ "schema": "./updates/16.4.1/schema.json"
8
+ },
4
9
  "update-16.4.0": {
5
10
  "description": "Aktualisiert das LUX-Componentsprojekt auf die Version 16.4.0",
6
11
  "factory": "./updates/16.4.0/index#update160400",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ihk-gfi/lux-components-update",
3
- "version": "16.4.0",
3
+ "version": "16.4.1",
4
4
  "description": "Schematics für die Aktualisierung von LUX-Applikationen",
5
5
  "scripts": {
6
6
  "build": "npm run clean && tsc -p tsconfig.json",
@@ -0,0 +1,2 @@
1
+ import { Rule } from '@angular-devkit/schematics';
2
+ export declare function update160401(_options: any, runNpmInstall?: boolean): Rule;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.update160401 = update160401;
4
+ const schematics_1 = require("@angular-devkit/schematics");
5
+ const chalk = require("chalk");
6
+ const index_1 = require("../../update-dependencies/index");
7
+ const util_1 = require("../../utility/util");
8
+ function update160401(_options, runNpmInstall = true) {
9
+ return (_tree, _context) => {
10
+ return (0, schematics_1.chain)([
11
+ (0, util_1.messageInfoRule)(`Die LUX-Components werden auf die Version 16.4.1 aktualisiert...`),
12
+ (0, util_1.messageInfoRule)(`Die Datei "package.json" wird angepasst...`),
13
+ (0, index_1.updateDep)('@ihk-gfi/lux-components', '16.4.1', false),
14
+ (0, util_1.messageSuccessRule)(`Die LUX-Components wurden auf die Version 16.4.1 aktualisiert.`),
15
+ (0, util_1.finish)(runNpmInstall, `${chalk.yellowBright('Fertig!')}`)
16
+ ]);
17
+ };
18
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "luxupdate160401Schema",
4
+ "title": "Aktualisiert das LUX-Componentsprojekt",
5
+ "type": "object",
6
+ "description": "Aktualisiert das LUX-Componentsprojekt",
7
+ "properties": {
8
+ "project": {
9
+ "type": "string",
10
+ "description": "Der Projektname",
11
+ "$default": {
12
+ "$source": "projectName"
13
+ }
14
+ },
15
+ "verbose": {
16
+ "type": "boolean",
17
+ "description": "Generiert mehr Logausgaben",
18
+ "default": false
19
+ }
20
+ },
21
+ "required": [],
22
+ "additionalProperties": false
23
+ }