@ihk-gfi/lux-components-update 19.4.1 → 19.5.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/collection.json CHANGED
@@ -6,6 +6,11 @@
6
6
  "factory": "./src/update-standalone-imports/index#updateStandAloneImports",
7
7
  "schema": "./src/update-standalone-imports/schema.json"
8
8
  },
9
+ "update-19.5.0": {
10
+ "description": "Aktualisiert das LUX-Componentsprojekt auf die Version 19.5.0",
11
+ "factory": "./src/updates/19.5.0/index#update190500",
12
+ "schema": "./src/updates/19.5.0/schema.json"
13
+ },
9
14
  "update-19.4.0": {
10
15
  "description": "Aktualisiert das LUX-Componentsprojekt auf die Version 19.4.0",
11
16
  "factory": "./src/updates/19.4.0/index#update190400",
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@ihk-gfi/lux-components-update",
3
- "version": "19.4.1",
3
+ "version": "19.5.0",
4
4
  "description": "Schematics für die Aktualisierung von LUX-Applikationen",
5
+ "private": false,
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
5
9
  "scripts": {
6
10
  "build": "npm run clean && tsc -p tsconfig.json",
7
11
  "clean": "del-cli --force ../../dist/updater/",
@@ -17,6 +21,10 @@
17
21
  "lux-components",
18
22
  "jast"
19
23
  ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/IHK-GfI/lux-components-workspace"
27
+ },
20
28
  "workspaces": [
21
29
  "./projects/*",
22
30
  "./dist/*"
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.update190500 = update190500;
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 update190500(_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 19.5.0 aktualisiert...`),
12
+ (0, util_1.messageInfoRule)(`Die Datei "package.json" wird angepasst...`),
13
+ (0, index_1.updateDep)('@ihk-gfi/lux-components', '19.5.0', false),
14
+ (0, index_1.updateDep)('@ihk-gfi/lux-components-theme', '19.3.0', false),
15
+ (0, util_1.messageSuccessRule)(`Die LUX-Components wurden auf die Version 19.5.0 aktualisiert.`),
16
+ (0, util_1.finish)(runNpmInstall, `${chalk.yellowBright('Fertig!')}`)
17
+ ]);
18
+ };
19
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "luxupdate190500Schema",
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
+ }