@ui5/webcomponents-tools 0.0.0-e7dd012d7 → 0.0.0-ebd9a4db3

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.
Files changed (101) hide show
  1. package/CHANGELOG.md +1943 -0
  2. package/README.md +6 -9
  3. package/assets-meta.js +22 -6
  4. package/bin/dev.js +1 -5
  5. package/components-package/eslint.js +66 -2
  6. package/components-package/nps.js +137 -55
  7. package/components-package/postcss.components.js +1 -21
  8. package/components-package/postcss.themes.js +1 -23
  9. package/components-package/vite.config.js +9 -0
  10. package/components-package/wdio.js +110 -39
  11. package/icons-collection/nps.js +54 -11
  12. package/lib/amd-to-es6/index.js +102 -0
  13. package/lib/amd-to-es6/no-remaining-require.js +33 -0
  14. package/lib/cem/custom-elements-manifest.config.mjs +530 -0
  15. package/lib/cem/event.mjs +168 -0
  16. package/lib/cem/schema-internal.json +1422 -0
  17. package/lib/cem/schema.json +1098 -0
  18. package/lib/cem/types-internal.d.ts +808 -0
  19. package/lib/cem/types.d.ts +736 -0
  20. package/lib/cem/utils.mjs +423 -0
  21. package/lib/cem/validate.js +67 -0
  22. package/lib/copy-and-watch/index.js +30 -5
  23. package/lib/copy-list/index.js +28 -0
  24. package/lib/create-icons/index.js +127 -52
  25. package/lib/create-illustrations/index.js +182 -0
  26. package/lib/create-new-component/Component.js +74 -0
  27. package/lib/create-new-component/ComponentTemplate.js +12 -0
  28. package/lib/create-new-component/index.js +64 -97
  29. package/lib/css-processors/css-processor-components.mjs +78 -0
  30. package/lib/css-processors/css-processor-themes.mjs +74 -0
  31. package/lib/css-processors/scope-variables.mjs +49 -0
  32. package/lib/css-processors/shared.mjs +56 -0
  33. package/lib/dev-server/custom-hot-update-plugin.js +39 -0
  34. package/lib/dev-server/dev-server.mjs +66 -0
  35. package/lib/dev-server/virtual-index-html-plugin.js +56 -0
  36. package/lib/generate-js-imports/illustrations.js +86 -0
  37. package/lib/generate-json-imports/i18n.js +66 -37
  38. package/lib/generate-json-imports/themes.js +55 -34
  39. package/lib/hbs2lit/src/compiler.js +24 -4
  40. package/lib/hbs2lit/src/includesReplacer.js +5 -5
  41. package/lib/hbs2lit/src/litVisitor2.js +113 -25
  42. package/lib/hbs2lit/src/svgProcessor.js +12 -5
  43. package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +40 -14
  44. package/lib/hbs2ui5/index.js +57 -24
  45. package/lib/i18n/defaults.js +66 -57
  46. package/lib/i18n/toJSON.js +13 -12
  47. package/lib/postcss-combine-duplicated-selectors/index.js +185 -0
  48. package/lib/remove-dev-mode/remove-dev-mode.mjs +37 -0
  49. package/lib/scoping/get-all-tags.js +11 -11
  50. package/lib/scoping/lint-src.js +9 -8
  51. package/lib/scoping/missing-dependencies.js +65 -0
  52. package/lib/scoping/report-tags-usage.js +28 -0
  53. package/lib/scoping/scope-test-pages.js +2 -1
  54. package/lib/test-runner/test-runner.js +71 -0
  55. package/package.json +55 -53
  56. package/tsconfig.json +18 -0
  57. package/bin/init-ui5-package.js +0 -3
  58. package/components-package/rollup.js +0 -145
  59. package/components-package/serve.json +0 -3
  60. package/lib/documentation/index.js +0 -143
  61. package/lib/documentation/templates/api-component-since.js +0 -3
  62. package/lib/documentation/templates/api-css-variables-section.js +0 -24
  63. package/lib/documentation/templates/api-events-section.js +0 -35
  64. package/lib/documentation/templates/api-methods-section.js +0 -26
  65. package/lib/documentation/templates/api-properties-section.js +0 -40
  66. package/lib/documentation/templates/api-slots-section.js +0 -28
  67. package/lib/documentation/templates/template.js +0 -38
  68. package/lib/init-package/index.js +0 -123
  69. package/lib/init-package/resources/.eslintignore +0 -3
  70. package/lib/init-package/resources/bundle.es5.js +0 -25
  71. package/lib/init-package/resources/bundle.esm.js +0 -34
  72. package/lib/init-package/resources/config/.eslintrc.js +0 -1
  73. package/lib/init-package/resources/config/postcss.components/postcss.config.js +0 -1
  74. package/lib/init-package/resources/config/postcss.themes/postcss.config.js +0 -1
  75. package/lib/init-package/resources/config/rollup.config.js +0 -1
  76. package/lib/init-package/resources/config/wdio.conf.js +0 -1
  77. package/lib/init-package/resources/package-scripts.js +0 -11
  78. package/lib/init-package/resources/src/Assets.js +0 -5
  79. package/lib/init-package/resources/src/MyFirstComponent.hbs +0 -1
  80. package/lib/init-package/resources/src/MyFirstComponent.js +0 -56
  81. package/lib/init-package/resources/src/i18n/messagebundle.properties +0 -2
  82. package/lib/init-package/resources/src/i18n/messagebundle_de.properties +0 -1
  83. package/lib/init-package/resources/src/i18n/messagebundle_en.properties +0 -1
  84. package/lib/init-package/resources/src/i18n/messagebundle_es.properties +0 -1
  85. package/lib/init-package/resources/src/i18n/messagebundle_fr.properties +0 -1
  86. package/lib/init-package/resources/src/themes/MyFirstComponent.css +0 -11
  87. package/lib/init-package/resources/src/themes/sap_belize/parameters-bundle.css +0 -3
  88. package/lib/init-package/resources/src/themes/sap_belize_hcb/parameters-bundle.css +0 -3
  89. package/lib/init-package/resources/src/themes/sap_belize_hcw/parameters-bundle.css +0 -3
  90. package/lib/init-package/resources/src/themes/sap_fiori_3/parameters-bundle.css +0 -3
  91. package/lib/init-package/resources/src/themes/sap_fiori_3_dark/parameters-bundle.css +0 -3
  92. package/lib/init-package/resources/src/themes/sap_fiori_3_hcb/parameters-bundle.css +0 -3
  93. package/lib/init-package/resources/src/themes/sap_fiori_3_hcw/parameters-bundle.css +0 -3
  94. package/lib/init-package/resources/test/pages/index.html +0 -56
  95. package/lib/init-package/resources/test/specs/Demo.spec.js +0 -12
  96. package/lib/jsdoc/config.json +0 -29
  97. package/lib/jsdoc/plugin.js +0 -2407
  98. package/lib/jsdoc/template/publish.js +0 -4092
  99. package/lib/postcss-css-to-esm/index.js +0 -42
  100. package/lib/postcss-css-to-json/index.js +0 -27
  101. package/package-lock.json +0 -48
package/README.md CHANGED
@@ -1,24 +1,21 @@
1
- ![UI5 icon](https://raw.githubusercontent.com/SAP/ui5-webcomponents/master/docs/images/UI5_logo_wide.png)
1
+ # ![UI5 icon](https://raw.githubusercontent.com/SAP/ui5-webcomponents/main/docs/images/UI5_logo_water.png)UI5 Web Components - Tools
2
2
 
3
- # UI5 Web Components - Tools
4
-
5
- [![Travis CI Build Status](https://travis-ci.org/SAP/ui5-webcomponents.svg?branch=master)](https://travis-ci.org/SAP/ui5-webcomponents)
6
3
  [![npm Package Version](https://badge.fury.io/js/%40ui5%2Fwebcomponents.svg)](https://www.npmjs.com/package/@ui5/webcomponents)
7
4
 
8
5
  Provides libraries, configuration files and build artifacts,
9
6
  used by other UI5 Web Components packages, such as `main` and `fiori`.
10
7
 
11
8
  ## Resources
12
- - [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/master/README.md)
9
+ - [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/main/README.md)
13
10
  - [UI5 Web Components - Home Page](https://sap.github.io/ui5-webcomponents)
14
- - [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/)
11
+ - [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/play/)
15
12
 
16
13
  ## Support
17
- We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/).
14
+ We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://ui5-slack-invite.cfapps.eu10.hana.ondemand.com/).
18
15
 
19
16
  ## Contribute
20
- Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/CONTRIBUTING.md).
17
+ Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/docs/6-contributing/02-conventions-and-guidelines.md).
21
18
 
22
19
  ## License
23
20
  Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
24
- This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/master/LICENSE.txt) file.
21
+ This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/SAP/ui5-webcomponents/blob/main/LICENSE.txt) file.
package/assets-meta.js CHANGED
@@ -1,15 +1,16 @@
1
1
  const assetsMeta = {
2
2
  "themes": {
3
- "default": "sap_fiori_3",
3
+ "default": "sap_horizon",
4
4
  "all": [
5
5
  "sap_fiori_3",
6
6
  "sap_fiori_3_dark",
7
- "sap_belize",
8
- "sap_belize_hcb",
9
- "sap_belize_hcw",
10
7
  "sap_fiori_3_hcb",
11
- "sap_fiori_3_hcw"
12
- ]
8
+ "sap_fiori_3_hcw",
9
+ "sap_horizon",
10
+ "sap_horizon_dark",
11
+ "sap_horizon_hcb",
12
+ "sap_horizon_hcw",
13
+ ],
13
14
  },
14
15
  "languages": {
15
16
  "default": "en",
@@ -17,18 +18,27 @@ const assetsMeta = {
17
18
  "ar",
18
19
  "bg",
19
20
  "ca",
21
+ "cnr",
20
22
  "cs",
23
+ "cy",
21
24
  "da",
22
25
  "de",
23
26
  "el",
24
27
  "en",
28
+ "en_GB",
29
+ "en_US_sappsd",
30
+ "en_US_saprigi",
31
+ "en_US_saptrc",
25
32
  "es",
33
+ "es_MX",
26
34
  "et",
27
35
  "fi",
28
36
  "fr",
37
+ "fr_CA",
29
38
  "hi",
30
39
  "hr",
31
40
  "hu",
41
+ "id",
32
42
  "it",
33
43
  "iw",
34
44
  "ja",
@@ -36,16 +46,19 @@ const assetsMeta = {
36
46
  "ko",
37
47
  "lt",
38
48
  "lv",
49
+ "mk",
39
50
  "ms",
40
51
  "nl",
41
52
  "no",
42
53
  "pl",
54
+ "pt_PT",
43
55
  "pt",
44
56
  "ro",
45
57
  "ru",
46
58
  "sh",
47
59
  "sk",
48
60
  "sl",
61
+ "sr",
49
62
  "sv",
50
63
  "th",
51
64
  "tr",
@@ -63,6 +76,7 @@ const assetsMeta = {
63
76
  "ar_SA",
64
77
  "bg",
65
78
  "ca",
79
+ "cnr",
66
80
  "cs",
67
81
  "da",
68
82
  "de",
@@ -110,6 +124,7 @@ const assetsMeta = {
110
124
  "lt",
111
125
  "lv",
112
126
  "ms",
127
+ "mk",
113
128
  "nb",
114
129
  "nl",
115
130
  "nl_BE",
@@ -122,6 +137,7 @@ const assetsMeta = {
122
137
  "sk",
123
138
  "sl",
124
139
  "sr",
140
+ "sr_Latn",
125
141
  "sv",
126
142
  "th",
127
143
  "tr",
package/bin/dev.js CHANGED
@@ -10,11 +10,7 @@ if (command === "watch") {
10
10
  command = `watch.${argument}`;
11
11
  }
12
12
  } else if (command === "test") {
13
- if (argument === "--no-server") { // yarn test --no-server
14
- command = `test.run`;
15
- } else if (argument) { // yarn test test/specs/Button.spec.js
16
- command = `test.spec --spec ${argument}`;
17
- }
13
+ command = `test ${process.argv.slice(3).join(" ")}`;
18
14
  }
19
15
 
20
16
  child_process.execSync(`npx nps "${command}"`, {stdio: 'inherit'});
@@ -1,3 +1,65 @@
1
+ const fs = require("fs");
2
+ const path = require("path");
3
+ const tsMode = fs.existsSync(path.join(process.cwd(), "tsconfig.json"));
4
+
5
+ /**
6
+ * Returns eslint rules specific to typescript files
7
+ * @returns
8
+ */
9
+ const getTsModeOverrides = () => {
10
+ const tsConfiguration = {
11
+ files: ["*.ts"],
12
+ parser: "@typescript-eslint/parser",
13
+ plugins: ["@typescript-eslint"],
14
+ extends: [
15
+ "plugin:@typescript-eslint/recommended",
16
+ "plugin:@typescript-eslint/recommended-requiring-type-checking"
17
+ ],
18
+ parserOptions: {
19
+ "project": [
20
+ "./tsconfig.json"
21
+ ],
22
+ EXPERIMENTAL_useSourceOfProjectReferenceRedirect: true,
23
+ },
24
+ rules: {
25
+ "no-shadow": "off",
26
+ "@typescript-eslint/consistent-type-imports": "error",
27
+ "import/consistent-type-specifier-style": ["error", "prefer-top-level"],
28
+ "@typescript-eslint/no-shadow": ["error"],
29
+ "@typescript-eslint/no-unsafe-member-access": "off",
30
+ "@typescript-eslint/no-floating-promises": "off",
31
+ "@typescript-eslint/no-explicit-any": "off",
32
+ "@typescript-eslint/no-unsafe-assignment": "off",
33
+ "@typescript-eslint/ban-ts-comment": "off",
34
+ "@typescript-eslint/no-unsafe-call": "off",
35
+ "@typescript-eslint/no-non-null-assertion": "off",
36
+ "@typescript-eslint/no-empty-function": "off",
37
+ "@typescript-eslint/no-empty-interface": "off",
38
+ "lines-between-class-members": "off",
39
+ }
40
+ };
41
+
42
+ const tsxConfiguration = JSON.parse(JSON.stringify(tsConfiguration));
43
+ tsxConfiguration.files = ["*.tsx"];
44
+ tsxConfiguration.plugins.push("jsx-no-leaked-values");
45
+ tsxConfiguration.rules = {
46
+ ...tsxConfiguration.rules,
47
+ "jsx-no-leaked-values/jsx-no-leaked-values": "error",
48
+ "@typescript-eslint/unbound-method": "off", // to be able to attach on* listeners
49
+ "@typescript-eslint/no-misused-promises": "off", // to be able to have async event listeners
50
+ "operator-linebreak": "off",
51
+ "no-nested-ternary": "off",
52
+ "implicit-arrow-linebreak": "off",
53
+ "function-paren-newline": "off",
54
+ "comma-dangle": "off"
55
+ };
56
+
57
+ return [
58
+ tsConfiguration,
59
+ tsxConfiguration
60
+ ];
61
+ }
62
+
1
63
  module.exports = {
2
64
  "env": {
3
65
  "browser": true,
@@ -5,6 +67,7 @@ module.exports = {
5
67
  },
6
68
  "root": true,
7
69
  "extends": "airbnb-base",
70
+ "overrides": tsMode ? getTsModeOverrides() : [],
8
71
  "parserOptions": {
9
72
  "ecmaVersion": 2018,
10
73
  "sourceType": "module"
@@ -47,6 +110,7 @@ module.exports = {
47
110
  "curly": [2, "all"],
48
111
  // "default-case": 1, // removed for UI5 WebComponents
49
112
  "import/extensions": ["error", "always"], // override for UI5 WebComponents
113
+ "import/order": "off",
50
114
  "no-alert": 2,
51
115
  "no-caller": 2,
52
116
  "no-div-regex": 2,
@@ -88,7 +152,7 @@ module.exports = {
88
152
  "no-shadow-restricted-names": 2,
89
153
  "no-undef-init": 2,
90
154
  "no-undef": 2,
91
- "no-unused-vars": [2, {"vars":"all", "args":"none"}],
155
+ "no-unused-vars": [2, { "vars": "all", "args": "none" }],
92
156
 
93
157
  "brace-style": [2, "1tbs", { "allowSingleLine": true }],
94
158
  "camelcase": [1, { "properties": "never" }], // added for UI5 WebComponents
@@ -104,7 +168,7 @@ module.exports = {
104
168
  "no-new-object": 2,
105
169
  "no-spaced-func": 2,
106
170
  "quote-props": [2, "as-needed", { "keywords": true, "unnecessary": false }],
107
- "semi-spacing": [1, {"before": false, "after": true}],
171
+ "semi-spacing": [1, { "before": false, "after": true }],
108
172
  "semi": 2,
109
173
  "keyword-spacing": 2,
110
174
  "space-infix-ops": 2,
@@ -1,89 +1,171 @@
1
1
  const path = require("path");
2
-
2
+ const fs = require("fs");
3
3
  const LIB = path.join(__dirname, `../lib/`);
4
- const serveConfig = path.join(__dirname, `serve.json`);
5
- const polyfillDir = path.dirname(require.resolve("@webcomponents/webcomponentsjs"));
6
- const polyfillPath = path.join(polyfillDir, "/**/*.*");
4
+ let websiteBaseUrl = "/";
5
+
6
+ if (process.env.DEPLOY) {
7
+ websiteBaseUrl = "/ui5-webcomponents/";
8
+ } else if (process.env.DEPLOY_NIGHTLY) {
9
+ websiteBaseUrl = "/ui5-webcomponents/nightly/";
10
+ }
11
+
12
+ const cypressEnvVariables = (options, predefinedVars) => {
13
+ let variables = [];
14
+ const { cypress_code_coverage, cypress_acc_tests } = options.internal ?? {};
15
+
16
+ // Handle environment variables like TEST_SUITE
17
+ if (predefinedVars) {
18
+ variables = [...predefinedVars];
19
+ }
20
+
21
+ // The coverage task is always registered and requires an explicit variable whether to generate a report or not
22
+ variables.push(`CYPRESS_COVERAGE=${!!cypress_code_coverage}`);
23
+
24
+ if (cypress_acc_tests) {
25
+ variables.push("CYPRESS_UI5_ACC=true");
26
+ }
27
+
28
+ return variables.length ? `cross-env ${variables.join(" ")}` : "";
29
+ }
7
30
 
8
31
  const getScripts = (options) => {
9
32
 
10
- const port = options.port;
33
+ // The script creates all JS modules (dist/illustrations/{illustrationName}.js) out of the existing SVGs
34
+ const illustrationsData = options.illustrationsData || [];
35
+ const illustrations = illustrationsData.map(illustration => `node "${LIB}/create-illustrations/index.js" ${illustration.path} ${illustration.defaultText} ${illustration.illustrationsPrefix} ${illustration.set} ${illustration.destinationPath} ${illustration.collection}`);
36
+ const createIllustrationsJSImportsScript = illustrations.join(" && ");
37
+
38
+ // The script creates the "src/generated/js-imports/Illustration.js" file that registers loaders (dynamic JS imports) for each illustration
39
+ const createIllustrationsLoadersScript = illustrationsData.map(illustrations => `node ${LIB}/generate-js-imports/illustrations.js ${illustrations.destinationPath} ${illustrations.dynamicImports.outputFile} ${illustrations.set} ${illustrations.collection} ${illustrations.dynamicImports.location} ${illustrations.dynamicImports.filterOut.join(" ")}`).join(" && ");
40
+
41
+ const tsOption = !options.legacy || options.jsx;
42
+ const tsCommandOld = tsOption ? "tsc" : "";
43
+ let tsWatchCommandStandalone = tsOption ? "tsc --watch" : "";
44
+ // this command is only used for standalone projects. monorepo projects get their watch from vite, so opt-out here
45
+ if (options.noWatchTS) {
46
+ tsWatchCommandStandalone = "";
47
+ }
48
+ const tsCrossEnv = tsOption ? "cross-env UI5_TS=true" : "";
49
+
50
+ if (tsOption) {
51
+ try {
52
+ require("typescript");
53
+ } catch (e) {
54
+ console.error(`TypeScript is not found. Try to install it by running \`npm install --save-dev typescript\` if you are using npm or by running \`yarn add --dev typescript\` if you are using yarn.`);
55
+ process.exit(e.code);
56
+ }
57
+ }
58
+
59
+ let viteConfig;
60
+ if (fs.existsSync("config/vite.config.js")) {
61
+ // old project setup where config file is in separate folder
62
+ viteConfig = "-c config/vite.config.js";
63
+ } else if (fs.existsSync("vite.config.js")) {
64
+ // preferred way of custom configuration in root project folder
65
+ viteConfig = "";
66
+ } else {
67
+ // no custom configuration - use default from tools project
68
+ viteConfig = `-c "${require.resolve("@ui5/webcomponents-tools/components-package/vite.config.js")}"`;
69
+ }
70
+
71
+ let eslintConfig;
72
+ if (fs.existsSync(".eslintrc.js") || fs.existsSync(".eslintrc.cjs")) {
73
+ // preferred way of custom configuration in root project folder
74
+ eslintConfig = "";
75
+ } else {
76
+ // no custom configuration - use default from tools project
77
+ eslintConfig = `--config "${require.resolve("@ui5/webcomponents-tools/components-package/eslint.js")}"`;
78
+ }
11
79
 
12
80
  const scripts = {
13
- clean: "rimraf dist",
14
- lint: "eslint . --config config/.eslintrc.js",
15
- prepare: "nps clean build.templates build.styles build.i18n build.jsonImports copy build.samples",
81
+ clean: 'rimraf src/generated && rimraf dist && rimraf .port && nps "scope.testPages.clean"',
82
+ lint: `eslint . ${eslintConfig}`,
83
+ lintfix: `eslint . ${eslintConfig} --fix`,
84
+ generate: {
85
+ default: `${tsCrossEnv} nps prepare.all`,
86
+ all: 'concurrently "nps build.templates" "nps build.i18n" "nps prepare.styleRelated" "nps copyProps" "nps build.illustrations"',
87
+ styleRelated: "nps build.styles build.jsonImports build.jsImports",
88
+ },
89
+ prepare: {
90
+ default: `${tsCrossEnv} nps clean prepare.all ${options.legacy ? "copy" : ""} copyProps prepare.typescript generateAPI`,
91
+ all: 'concurrently "nps build.templates" "nps build.i18n" "nps prepare.styleRelated" "nps build.illustrations"',
92
+ styleRelated: "nps build.styles build.jsonImports build.jsImports",
93
+ typescript: tsCommandOld,
94
+ },
16
95
  build: {
17
- default: "nps lint prepare build.bundle",
18
- templates: `mkdirp dist/generated/templates && node "${LIB}/hbs2ui5/index.js" -d src/ -o dist/generated/templates`,
96
+ default: "nps prepare lint build.bundle", // build.bundle2
97
+ templates: `mkdirp src/generated/templates && ${tsCrossEnv} node "${LIB}/hbs2ui5/index.js" -d src/ -o src/generated/templates`,
19
98
  styles: {
20
- default: "nps build.styles.themes build.styles.components",
21
- themes: "postcss src/**/parameters-bundle.css --config config/postcss.themes --base src --dir dist/css/",
22
- components: "postcss src/themes/*.css --config config/postcss.components --base src --dir dist/css/",
99
+ default: `concurrently "nps build.styles.themes" "nps build.styles.components"`,
100
+ themes: `node "${LIB}/css-processors/css-processor-themes.mjs"`,
101
+ components: `node "${LIB}/css-processors/css-processor-components.mjs"`,
23
102
  },
24
103
  i18n: {
25
104
  default: "nps build.i18n.defaultsjs build.i18n.json",
26
- defaultsjs: `node "${LIB}/i18n/defaults.js" src/i18n dist/generated/i18n`,
105
+ defaultsjs: `node "${LIB}/i18n/defaults.js" src/i18n src/generated/i18n`,
27
106
  json: `node "${LIB}/i18n/toJSON.js" src/i18n dist/generated/assets/i18n`,
28
107
  },
29
108
  jsonImports: {
30
- default: "mkdirp dist/generated/json-imports && nps build.jsonImports.themes build.jsonImports.i18n",
31
- themes: `node "${LIB}/generate-json-imports/themes.js" dist/generated/assets/themes dist/generated/json-imports`,
32
- i18n: `node "${LIB}/generate-json-imports/i18n.js" dist/generated/assets/i18n dist/generated/json-imports`,
109
+ default: "mkdirp src/generated/json-imports && nps build.jsonImports.themes build.jsonImports.i18n",
110
+ themes: `node "${LIB}/generate-json-imports/themes.js" dist/generated/assets/themes src/generated/json-imports`,
111
+ i18n: `node "${LIB}/generate-json-imports/i18n.js" dist/generated/assets/i18n src/generated/json-imports`,
112
+ },
113
+ jsImports: {
114
+ default: "mkdirp src/generated/js-imports && nps build.jsImports.illustrationsLoaders",
115
+ illustrationsLoaders: createIllustrationsLoadersScript,
33
116
  },
34
- bundle: "rollup --config config/rollup.config.js --environment ES5_BUILD",
35
- samples: {
36
- default: "nps build.samples.api build.samples.docs",
37
- api: `jsdoc -c "${LIB}/jsdoc/config.json"`,
38
- docs: `node "${LIB}/documentation/index.js" dist/api.json`,
39
- }
117
+ bundle: `vite build ${viteConfig} --mode testing --base ${websiteBaseUrl}`,
118
+ bundle2: ``,
119
+ illustrations: createIllustrationsJSImportsScript,
40
120
  },
121
+ copyProps: `node "${LIB}/copy-and-watch/index.js" --silent "src/i18n/*.properties" dist/`,
41
122
  copy: {
42
- default: "nps copy.src copy.test copy.webcomponents-polyfill",
43
- src: `node "${LIB}/copy-and-watch/index.js" "src/**/*.js" dist/`,
44
- test: `node "${LIB}/copy-and-watch/index.js" "test/**/*.*" dist/test-resources`,
45
- "webcomponents-polyfill": `node "${LIB}/copy-and-watch/index.js" "${polyfillPath}" dist/webcomponentsjs/`,
123
+ default: "nps copy.src copy.props",
124
+ src: `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.{js,json}" dist/`,
125
+ props: `node "${LIB}/copy-and-watch/index.js" --silent "src/i18n/*.properties" dist/`,
46
126
  },
47
127
  watch: {
48
- default: 'concurrently "nps watch.templates" "nps watch.samples" "nps watch.test" "nps watch.src" "nps watch.bundle" "nps watch.styles"',
128
+ default: `${tsCrossEnv} concurrently "nps watch.templates" "nps watch.typescript" ${options.legacy ? '"nps watch.src"' : ""} "nps watch.styles" "nps watch.i18n" "nps watch.props"`,
129
+ devServer: 'concurrently "nps watch.default" "nps watch.bundle"',
49
130
  src: 'nps "copy.src --watch --safe --skip-initial-copy"',
50
- test: 'nps "copy.test --watch --safe --skip-initial-copy"',
51
- bundle: "rollup --config config/rollup.config.js -w --environment ES5_BUILD,DEV,DEPLOY_PUBLIC_PATH:/resources/",
131
+ typescript: tsWatchCommandStandalone,
132
+ props: 'nps "copyProps --watch --safe --skip-initial-copy"',
133
+ bundle: `node ${LIB}/dev-server/dev-server.mjs ${viteConfig}`,
52
134
  styles: {
53
135
  default: 'concurrently "nps watch.styles.themes" "nps watch.styles.components"',
54
136
  themes: 'nps "build.styles.themes -w"',
55
- components: 'nps "build.styles.components -w"',
137
+ components: `nps "build.styles.components -w"`,
56
138
  },
57
- templates: "chokidar \"src/**/*.hbs\" -c \"nps build.templates\"",
58
- samples: "chokidar \"test/**/*.sample.html\" -c \"nps build.samples\"",
139
+ templates: 'chokidar "src/**/*.hbs" -i "src/generated" -c "nps build.templates"',
140
+ i18n: 'chokidar "src/i18n/messagebundle.properties" -c "nps build.i18n.defaultsjs"'
59
141
  },
60
- dev: 'concurrently "nps serve" "nps watch"',
61
- start: "nps prepare dev",
62
- serve: {
63
- default: "nps serve.prepare serve.run",
64
- prepare: `node "${LIB}/copy-and-watch/index.js" "${serveConfig}" dist/`,
65
- run: `serve --no-clipboard -l ${port} dist`,
66
- },
67
- test: {
68
- // --success first - report the exit code of the test run (first command to finish), as serve is always terminated and has a non-0 exit code
69
- default: 'concurrently "nps serve" "nps test.run" --kill-others --success first',
70
- run: "cross-env WDIO_LOG_LEVEL=error FORCE_COLOR=0 wdio config/wdio.conf.js",
71
- spec: "wdio run config/wdio.conf.js",
72
- },
73
- startWithScope: "nps scope.prepare scope.dev",
142
+ start: "nps prepare watch.devServer",
143
+ test: `node "${LIB}/test-runner/test-runner.js"`,
144
+ "test-cy-ci": `${cypressEnvVariables(options)} yarn cypress run --component --browser chrome`,
145
+ "test-cy-ci-suite-1": `${cypressEnvVariables(options, ["TEST_SUITE=SUITE1"])} yarn cypress run --component --browser chrome`,
146
+ "test-cy-ci-suite-2": `${cypressEnvVariables(options, ["TEST_SUITE=SUITE2"])} yarn cypress run --component --browser chrome`,
147
+ "test-cy-open": `${cypressEnvVariables(options)} yarn cypress open --component --browser chrome`,
148
+ "test-suite-1": `node "${LIB}/test-runner/test-runner.js" --suite suite1`,
149
+ "test-suite-2": `node "${LIB}/test-runner/test-runner.js" --suite suite2`,
150
+ startWithScope: "nps scope.prepare scope.watchWithBundle",
74
151
  scope: {
75
- prepare: "nps scope.lint prepare scope.testPages",
152
+ prepare: "nps scope.lint scope.testPages",
76
153
  lint: `node "${LIB}/scoping/lint-src.js"`,
77
154
  testPages: {
78
155
  default: "nps scope.testPages.clean scope.testPages.copy scope.testPages.replace",
79
- clean: "rimraf dist/test-resources/pages/scoped",
80
- copy: `node "${LIB}/copy-and-watch/index.js" "dist/test-resources/pages/**/*" dist/test-resources/scoped`,
81
- replace: `node "${LIB}/scoping/scope-test-pages.js" dist/test-resources/scoped demo`,
156
+ clean: "rimraf test/pages/scoped",
157
+ copy: `node "${LIB}/copy-and-watch/index.js" --silent "test/pages/**/*" test/pages/scoped`,
158
+ replace: `node "${LIB}/scoping/scope-test-pages.js" test/pages/scoped demo`,
82
159
  },
83
- dev: 'concurrently "nps serve" "nps scope.watch"',
84
- watch: 'concurrently "nps watch.templates" "nps watch.samples" "nps watch.test" "nps watch.src" "nps scope.bundle" "nps watch.styles"',
85
- bundle: "rollup --config config/rollup.config.js -w --environment ES5_BUILD,DEV,SCOPE"
86
- }
160
+ watchWithBundle: 'concurrently "nps scope.watch" "nps scope.bundle" ',
161
+ watch: 'concurrently "nps watch.templates" "nps watch.props" "nps watch.styles"',
162
+ bundle: `node ${LIB}/dev-server/dev-server.mjs ${viteConfig}`,
163
+ },
164
+ generateAPI: {
165
+ default: tsOption ? "nps generateAPI.generateCEM generateAPI.validateCEM" : "",
166
+ generateCEM: `${options.dev ? "cross-env UI5_CEM_MODE='dev'" : ""} cem analyze --config "${LIB}/cem/custom-elements-manifest.config.mjs"`,
167
+ validateCEM: `${options.dev ? "cross-env UI5_CEM_MODE='dev'" : ""} node "${LIB}/cem/validate.js"`,
168
+ },
87
169
  };
88
170
 
89
171
  return scripts;
@@ -1,21 +1 @@
1
- const postcssImport = require('postcss-import');
2
- const postcssCSStoESM = require('../lib/postcss-css-to-esm/index.js');
3
- const cssnano = require('cssnano');
4
- const fs = require("fs");
5
-
6
- const packageName = JSON.parse(fs.readFileSync("./package.json")).name;
7
-
8
- module.exports = {
9
- plugins: [
10
- postcssImport(),
11
- cssnano({
12
- preset: [
13
- 'default', {
14
- mergeLonghand: false, // https://github.com/cssnano/cssnano/issues/675
15
- mergeRules: false, // https://github.com/cssnano/cssnano/issues/730
16
- },
17
- ]
18
- }),
19
- postcssCSStoESM({toReplace: 'src', includeDefaultTheme: true, packageName}),
20
- ]
21
- };
1
+ module.exports = {}
@@ -1,23 +1 @@
1
- const postcssImport = require('postcss-import');
2
- const combineSelectors = require('postcss-combine-duplicated-selectors');
3
- const postcssCSStoJSON = require('../lib/postcss-css-to-json/index.js');
4
- const postcssCSStoESM = require('../lib/postcss-css-to-esm/index.js');
5
- const cssnano = require('cssnano');
6
-
7
- module.exports = {
8
- plugins: [
9
- postcssImport(),
10
- combineSelectors({
11
- removeDuplicatedProperties: true
12
- }),
13
- cssnano({
14
- preset: [
15
- 'default', {
16
- mergeLonghand: false, // https://github.com/cssnano/cssnano/issues/675
17
- },
18
- ]
19
- },),
20
- postcssCSStoJSON({toReplace: 'src'}),
21
- postcssCSStoESM({toReplace: 'src'}),
22
- ]
23
- };
1
+ module.exports = {};
@@ -0,0 +1,9 @@
1
+ // vite.config.js
2
+ const virtualIndex = require('../lib/dev-server/virtual-index-html-plugin.js');
3
+
4
+ module.exports = {
5
+ build: {
6
+ emptyOutDir: false,
7
+ },
8
+ plugins: [virtualIndex()],
9
+ };