@eui/cli 16.0.0-next.12 → 16.0.0-next.13

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.
@@ -1 +1 @@
1
- 16.0.0-next.12
1
+ 16.0.0-next.13
package/lib/build.js CHANGED
@@ -146,7 +146,7 @@ const copyAngular = (targetPath, cliConfig, overwrite = true) => {
146
146
  tools.copydir(config.optionsPath[item], targetPath, true);
147
147
  }
148
148
  })
149
- if (cliConfig.appOptionsEclTheme) {
149
+ if (cliConfig.appOptions.includes('ecl') && cliConfig.appOptionsEclTheme) {
150
150
  console.log(`eUI ECL theme selected : ` + cliConfig.appOptionsEclTheme);
151
151
  tools.copydir(config.optionsPath[cliConfig.appOptionsEclTheme], targetPath, true);
152
152
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "16.0.0-next.12",
3
+ "version": "16.0.0-next.13",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
@@ -20,6 +20,6 @@
20
20
  },
21
21
  "private": true,
22
22
  "dependencies": {
23
- "@eui/deps-base": "16.0.0-next.12"
23
+ "@eui/deps-base": "16.0.0-next.13"
24
24
  }
25
25
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "16.0.0-next.12",
3
+ "version": "16.0.0-next.13",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "private": true,
22
22
  "dependencies": {
23
- "@eui/deps-base": "16.0.0-next.12",
23
+ "@eui/deps-base": "16.0.0-next.13",
24
24
  "@eui/mobile-core": "15.1.0",
25
25
  "@eui/mobile-styles": "15.1.0"
26
26
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "16.0.0-next.12",
3
+ "version": "16.0.0-next.13",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
@@ -18,6 +18,6 @@
18
18
  },
19
19
  "private": true,
20
20
  "dependencies": {
21
- "@eui/deps-base": "16.0.0-next.12"
21
+ "@eui/deps-base": "16.0.0-next.13"
22
22
  }
23
23
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "16.0.0-next.12",
3
+ "version": "16.0.0-next.13",
4
4
  "license": "EUPL-1.1",
5
5
  "description": "eUI JEE Symfony app scripts",
6
6
  "scripts": {
@@ -19,6 +19,6 @@
19
19
  },
20
20
  "private": true,
21
21
  "dependencies": {
22
- "@eui/deps-base": "16.0.0-next.12"
22
+ "@eui/deps-base": "16.0.0-next.13"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/cli",
3
- "version": "16.0.0-next.12",
3
+ "version": "16.0.0-next.13",
4
4
  "tag": "next",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI CLI app generator",
@@ -13,7 +13,7 @@
13
13
  "url": "https://citnet.tech.ec.europa.eu/CITnet/stash/projects/CSDR/repos/eui"
14
14
  },
15
15
  "dependencies": {
16
- "@eui/tools": "6.11.31"
16
+ "@eui/tools": "6.11.32"
17
17
  },
18
18
  "preferGlobal": true,
19
19
  "homepage": "https://eui.ecdevops.eu",
@@ -1,24 +0,0 @@
1
- {
2
- "extends":"stylelint-config-standard",
3
- "plugins": [
4
- "stylelint-order",
5
- "stylelint-scss"
6
- ],
7
- "rules": {
8
- "order/order": [
9
- "custom-properties",
10
- "declarations"
11
- ],
12
- "order/properties-alphabetical-order": true,
13
-
14
- "at-rule-empty-line-before": "never",
15
- "no-descending-specificity": null,
16
- "no-duplicate-selectors": null,
17
- "font-family-no-missing-generic-family-keyword": null,
18
- "indentation": 4,
19
- "selector-type-no-unknown": null,
20
- "at-rule-no-unknown": [true, {
21
- ignoreAtRules: ['at-root', 'content', 'each', 'else', 'extend', 'for', 'function', 'if', 'include', 'mixin', 'return', 'warn', 'while']
22
- }]
23
- }
24
- }