@ui5/create-webcomponents-package 0.0.0-b0b835975 → 0.0.0-b132dd7b9
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/CHANGELOG.md +1171 -0
- package/README.md +9 -15
- package/create-package.js +173 -208
- package/package.json +4 -1
- package/template/.eslintignore +3 -2
- package/template/.npsrc.json +3 -0
- package/template/cypress/component/MyFirstComponent.cy.tsx +13 -0
- package/template/cypress/fixtures/example.json +5 -0
- package/template/cypress/support/commands.ts +37 -0
- package/template/cypress/support/component-index.html +12 -0
- package/template/cypress/support/component.ts +36 -0
- package/template/cypress/tsconfig.template.json +19 -0
- package/template/cypress.config.ts +10 -0
- package/template/env +1 -0
- package/template/gitignore +2 -2
- package/template/{package-scripts.js → package-scripts.cjs} +0 -1
- package/template/package.json +35 -0
- package/template/src/Assets.ts +1 -1
- package/template/src/MyFirstComponent.ts +18 -25
- package/template/src/MyFirstComponentTemplate.tsx +9 -0
- package/template/{bundle.esm.js → src/bundle.esm.ts} +4 -5
- package/template/src/themes/MyFirstComponent.css +2 -1
- package/template/test/pages/css/index.css +65 -12
- package/template/test/pages/img/logo.png +0 -0
- package/template/test/pages/index.html +36 -40
- package/template/tsconfig.template.json +14 -0
- package/template/vite.config.js +14 -0
- package/template/config/postcss.components/postcss.config.js +0 -1
- package/template/config/postcss.themes/postcss.config.js +0 -1
- package/template/config/wdio.conf.js +0 -1
- package/template/src/Assets.js +0 -5
- package/template/src/MyFirstComponent.hbs +0 -1
- package/template/src/MyFirstComponent.js +0 -82
- package/template/src/themes/sap_fiori_3/parameters-bundle.css +0 -3
- package/template/test/specs/Demo.spec.js +0 -13
- package/template/tsconfig.json +0 -15
- /package/template/{.eslintrc.js → .eslintrc.cjs} +0 -0
package/README.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
UI5 Web Components - Create Package
|
4
2
|
|
5
3
|
[](https://www.npmjs.com/package/@ui5/webcomponents)
|
6
4
|
|
@@ -17,11 +15,9 @@ Usage:
|
|
17
15
|
npm init @ui5/webcomponents-package -- [OPTIONS]
|
18
16
|
|
19
17
|
Options:
|
20
|
-
--name <string>
|
21
|
-
--
|
22
|
-
--
|
23
|
-
--enable-typescript - enables TypeScript support for the package
|
24
|
-
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
|
18
|
+
--name <string> - defines the package name
|
19
|
+
--test-setup <"cypress" | "manual"> - defines whether the predefined test setup should be added or it will be configured manually.
|
20
|
+
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
|
25
21
|
```
|
26
22
|
|
27
23
|
The script creates a new directory, and fills it with a `package.json` file and all necessary source files, and resources for a new
|
@@ -33,11 +29,9 @@ components package.
|
|
33
29
|
Usage:
|
34
30
|
yarn create @ui5/webcomponents-package [OPTIONS]
|
35
31
|
Options:
|
36
|
-
--name <string>
|
37
|
-
--
|
38
|
-
--
|
39
|
-
--enable-typescript - enables TypeScript support for the package
|
40
|
-
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
|
32
|
+
--name <string> - defines the package name
|
33
|
+
--test-setup <"cypress" | "manual"> - defines whether the predefined test setup should be added or it will be configured manually.
|
34
|
+
--skip - skips configuration and generates package with a default value for each parameter that wasn't passed
|
41
35
|
```
|
42
36
|
|
43
37
|
The script creates a new directory, and fills it with a `package.json` file and all necessary source files, and resources for a new
|
@@ -46,10 +40,10 @@ components package.
|
|
46
40
|
## Resources
|
47
41
|
- [UI5 Web Components - README.md](https://github.com/SAP/ui5-webcomponents/blob/main/README.md)
|
48
42
|
- [UI5 Web Components - Home Page](https://sap.github.io/ui5-webcomponents)
|
49
|
-
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/
|
43
|
+
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/play/)
|
50
44
|
|
51
45
|
## Support
|
52
|
-
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://
|
46
|
+
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/).
|
53
47
|
|
54
48
|
## Contribute
|
55
49
|
Please check our [Contribution Guidelines](https://github.com/SAP/ui5-webcomponents/blob/main/docs/6-contributing/02-conventions-and-guidelines.md).
|
package/create-package.js
CHANGED
@@ -1,217 +1,200 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
import fs from "fs/promises";
|
3
|
+
import path, { dirname } from "path";
|
4
|
+
import prompts from "prompts";
|
5
|
+
import parser from "npm-config-user-agent-parser";
|
6
|
+
import yargs from "yargs/yargs";
|
7
|
+
import { globby } from "globby";
|
8
|
+
import { hideBin } from "yargs/helpers";
|
9
|
+
import { fileURLToPath } from "url";
|
10
|
+
import * as prettier from "prettier";
|
11
|
+
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
13
|
+
const __dirname = dirname(__filename);
|
11
14
|
const argv = yargs(hideBin(process.argv)).argv;
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
const
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
const isLogo = sourcePath => {
|
29
|
-
return sourcePath.includes("logo");
|
30
|
-
};
|
31
|
-
const isNPMRC = sourcePath => {
|
32
|
-
return sourcePath.includes("npmrc");
|
15
|
+
const VERSION = JSON.parse(
|
16
|
+
await fs.readFile(path.join(__dirname, "package.json")),
|
17
|
+
).version;
|
18
|
+
|
19
|
+
// Constants
|
20
|
+
const SUPPORTED_TEST_SETUPS = ["cypress", "manual"];
|
21
|
+
const SRC_DIR = "./template";
|
22
|
+
const FILES_TO_RENAME = {
|
23
|
+
"eslintignore": ".eslintignore",
|
24
|
+
"eslintrc.cjs": ".eslintrc.cjs",
|
25
|
+
"npsrc.json": ".npsrc.json",
|
26
|
+
"npmrc": ".npmrc",
|
27
|
+
"env": ".env",
|
28
|
+
"gitignore": ".gitignore",
|
29
|
+
"tsconfig.template.json": "tsconfig.json",
|
30
|
+
"cypress/tsconfig.template.json": "cypress/tsconfig.json"
|
33
31
|
};
|
32
|
+
const FILES_TO_COPY = ["test/pages/img/logo.png"];
|
33
|
+
|
34
|
+
// Validation Patterns
|
35
|
+
const PackageNamePattern =
|
36
|
+
/^(@[a-z0-9-~][a-z0-9-._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/;
|
37
|
+
const TagPattern = /^[a-z0-9]+?-[a-zA-Z0-9\-_]+?[a-z0-9]$/;
|
34
38
|
|
35
|
-
//
|
36
|
-
const
|
37
|
-
|
38
|
-
const
|
39
|
-
const
|
40
|
-
|
41
|
-
const isTagValid = tag => typeof tag === "string" && tag.match(/^[a-z0-9]+?-[a-zA-Z0-9\-_]+?[a-z0-9]$/);
|
39
|
+
// Utility Functions
|
40
|
+
const isPackageNameValid = name =>
|
41
|
+
typeof name === "string" && PackageNamePattern.test(name);
|
42
|
+
const isTagValid = tag => typeof tag === "string" && TagPattern.test(tag);
|
43
|
+
const isTestSetupValid = setup =>
|
44
|
+
typeof setup === "string" && SUPPORTED_TEST_SETUPS.includes(setup);
|
42
45
|
|
43
46
|
/**
|
44
47
|
* Hyphanates the given PascalCase string, f.e.:
|
45
48
|
* Foo -> "my-foo" (adds preffix)
|
46
49
|
* FooBar -> "foo-bar"
|
47
50
|
*/
|
48
|
-
const
|
49
|
-
const result = componentName
|
50
|
-
|
51
|
+
const hyphenateComponentName = componentName => {
|
52
|
+
const result = componentName
|
53
|
+
.replace(/([a-z])([A-Z])/g, "$1-$2")
|
54
|
+
.toLowerCase();
|
51
55
|
return result.includes("-") ? result : `my-${result}`;
|
52
56
|
};
|
53
57
|
|
54
|
-
|
55
|
-
|
56
|
-
for (let key in vars) {
|
57
|
-
const re = new RegExp(key, "g");
|
58
|
-
content = content.replace(re, vars[key]);
|
59
|
-
}
|
60
|
-
return content;
|
61
|
-
};
|
62
|
-
|
63
|
-
const replaceVarsInFileName = (vars, fileName) => {
|
64
|
-
return fileName.replace(/MyFirstComponent/, vars.INIT_PACKAGE_VAR_CLASS_NAME);
|
65
|
-
};
|
66
|
-
|
67
|
-
const copyFile = (vars, sourcePath, destPath) => {
|
68
|
-
const ignoreJsRelated = vars.INIT_PACKAGE_VAR_TYPESCRIPT && isJSRelatedFile(sourcePath);
|
69
|
-
const ignoreTsRelated = !vars.INIT_PACKAGE_VAR_TYPESCRIPT && isTSRelatedFile(sourcePath);
|
58
|
+
const replacePlaceholders = (content, replacements) =>
|
59
|
+
content.replace(/{{(.*?)}}/g, (_, key) => replacements[key.trim()] || "");
|
70
60
|
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
}
|
79
|
-
|
80
|
-
let content = fs.readFileSync(sourcePath, { encoding: "UTF-8" });
|
81
|
-
content = replaceVarsInFileContent(vars, content);
|
82
|
-
destPath = replaceVarsInFileName(vars, destPath);
|
83
|
-
|
84
|
-
fs.writeFileSync(destPath, content);
|
85
|
-
|
86
|
-
// Rename "gitignore" to ".gitignore" (npm init won't include ".gitignore", so we add it as "gitignore" and rename it later)
|
87
|
-
if (isGitIgnore(sourcePath)) {
|
88
|
-
fs.renameSync(destPath, destPath.replace("gitignore", ".gitignore"))
|
89
|
-
}
|
90
|
-
|
91
|
-
// Rename "npmrc" to ".npmrc" (npm init won't include ".npmrc", so we add it as "npmrc" and rename it later)
|
92
|
-
if (isNPMRC(sourcePath)) {
|
93
|
-
fs.renameSync(destPath, destPath.replace("npmrc", ".npmrc"));
|
94
|
-
}
|
95
|
-
};
|
96
|
-
|
97
|
-
const copyFiles = (vars, sourcePath, destPath) => {
|
98
|
-
const isDir = fs.lstatSync(sourcePath).isDirectory();
|
99
|
-
if (isDir) {
|
100
|
-
if (destPath) {
|
101
|
-
mkdirp.sync(destPath);
|
102
|
-
}
|
103
|
-
fs.readdirSync(sourcePath).forEach(file => {
|
104
|
-
copyFiles(vars, path.join(sourcePath, file), path.join(destPath, file));
|
105
|
-
});
|
106
|
-
} else {
|
107
|
-
copyFile(vars, sourcePath, destPath);
|
108
|
-
}
|
109
|
-
};
|
110
|
-
|
111
|
-
const generateFilesContent = (packageName, componentName, namespace, typescript, skipSubfolder) => {
|
112
|
-
const tagName = argv.tag || hyphaneteComponentName(componentName);
|
113
|
-
|
114
|
-
// All variables that will be replaced in the content of the resources/
|
61
|
+
const generateFilesContent = async (
|
62
|
+
packageName,
|
63
|
+
componentName,
|
64
|
+
skipSubfolder,
|
65
|
+
testSetup,
|
66
|
+
) => {
|
67
|
+
// All variables that will be replaced in the content of the template folder/
|
115
68
|
const vars = {
|
116
|
-
INIT_PACKAGE_VAR_NAMESPACE: namespace, // namespace must be replaced before name
|
117
69
|
INIT_PACKAGE_VAR_NAME: packageName,
|
118
|
-
|
70
|
+
INIT_PACKAGE_VERSION: VERSION,
|
71
|
+
INIT_PACKAGE_VAR_TAG: argv.tag || hyphenateComponentName(componentName),
|
119
72
|
INIT_PACKAGE_VAR_CLASS_NAME: componentName,
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
"
|
134
|
-
"build": "wc-dev build",
|
135
|
-
"test": "wc-dev test",
|
136
|
-
"create-ui5-element": "wc-create-ui5-element",
|
137
|
-
"prepublishOnly": "npm run build",
|
138
|
-
},
|
139
|
-
exports: {
|
140
|
-
"./src/*": "./src/*",
|
141
|
-
"./dist/*": "./dist/*",
|
142
|
-
"./package.json": "./package.json",
|
143
|
-
"./bundle.js": "./bundle.js",
|
144
|
-
"./*": "./dist/*",
|
145
|
-
},
|
146
|
-
"dependencies": {
|
147
|
-
"@ui5/webcomponents-base": version,
|
148
|
-
"@ui5/webcomponents-theming": version,
|
149
|
-
},
|
150
|
-
"devDependencies": {
|
151
|
-
"@ui5/webcomponents-tools": version,
|
152
|
-
"chromedriver": "*",
|
153
|
-
},
|
73
|
+
INIT_PACKAGE_CYPRESS_ROOT_TSCONFIG:
|
74
|
+
testSetup === "cypress"
|
75
|
+
? `"tsBuildInfoFile": "dist/.tsbuildinfo",\n"rootDir": "src",\n"composite": true,`
|
76
|
+
: "",
|
77
|
+
INIT_PACKAGE_CYPRESS_DEV_DEPS:
|
78
|
+
testSetup === "cypress"
|
79
|
+
? `"@ui5/cypress-ct-ui5-webc": "^0.0.4",\n"cypress": "^13.11.0",`
|
80
|
+
: "",
|
81
|
+
INIT_PACKAGE_CYPRESS_TEST_COMMANDS:
|
82
|
+
testSetup === "cypress"
|
83
|
+
? `"test": "cypress run --component --browser chrome",\n"test:open": "cypress open --component --browser chrome",`
|
84
|
+
: "",
|
85
|
+
INIT_PACKAGE_CYPRESS_ESLINT_IGNORES:
|
86
|
+
testSetup === "cypress" ? `cypress/*\ncypress.config.*` : "",
|
154
87
|
};
|
155
88
|
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
89
|
+
const packageBaseName = packageName.includes("@")
|
90
|
+
? packageName.slice(packageName.lastIndexOf("/") + 1)
|
91
|
+
: packageName;
|
92
|
+
const destDir = skipSubfolder
|
93
|
+
? path.join("./")
|
94
|
+
: path.join("./", packageBaseName);
|
162
95
|
|
163
|
-
|
164
|
-
mkdirp.sync(destDir);
|
165
|
-
fs.writeFileSync(path.join(destDir, "package.json"), JSON.stringify(packageContent, null, 2));
|
166
|
-
// Copy files
|
167
|
-
copyFiles(vars, TEMPLATE_DIR, destDir);
|
96
|
+
await processFiles(destDir, vars, testSetup);
|
168
97
|
|
169
98
|
console.log("\nPackage successfully created!\nNext steps:\n");
|
170
99
|
console.log(`$ cd ${destDir}`);
|
171
100
|
|
172
|
-
let userAgentInfo;
|
173
101
|
try {
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
console.log(`$
|
180
|
-
} else {
|
181
|
-
console.log(`$ npm i`);
|
182
|
-
console.log(`$ npm start`);
|
102
|
+
const userAgent = parser(process.env.npm_config_user_agent);
|
103
|
+
userAgent.yarn
|
104
|
+
? console.log(`$ yarn\n$ yarn start`)
|
105
|
+
: console.log(`$ npm i\n$ npm start`);
|
106
|
+
} catch {
|
107
|
+
console.log(`$ npm i\n$ npm start`);
|
183
108
|
}
|
184
109
|
|
185
110
|
console.log("\n");
|
186
111
|
};
|
187
112
|
|
188
|
-
|
189
|
-
const
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
113
|
+
async function processFiles(destDir, replacements, testSetup) {
|
114
|
+
const files = await globby(`${SRC_DIR}/**/*`);
|
115
|
+
const FILE_PATHS_TO_SKIP = [
|
116
|
+
testSetup !== "cypress" ? "cypress" : undefined,
|
117
|
+
].filter(Boolean);
|
118
|
+
|
119
|
+
for (const file of files) {
|
120
|
+
const relativePath = path.relative(SRC_DIR, file);
|
121
|
+
let destPath = path.join(destDir, relativePath);
|
122
|
+
|
123
|
+
if (FILE_PATHS_TO_SKIP.some(filePath => file.includes(filePath))) {
|
124
|
+
// console.log(`Skipped: ${file} -> ${destPath}`);
|
125
|
+
continue;
|
126
|
+
}
|
127
|
+
|
128
|
+
// Component related file based on the user input
|
129
|
+
destPath = destPath.replace(
|
130
|
+
"/MyFirstComponent",
|
131
|
+
`/${replacements.INIT_PACKAGE_VAR_CLASS_NAME}`,
|
132
|
+
);
|
133
|
+
|
134
|
+
// Files that need to be renamed
|
135
|
+
if (FILES_TO_RENAME[relativePath]) {
|
136
|
+
destPath = destPath.replace(
|
137
|
+
relativePath,
|
138
|
+
FILES_TO_RENAME[relativePath],
|
139
|
+
);
|
140
|
+
}
|
141
|
+
|
142
|
+
await fs.mkdir(path.dirname(destPath), { recursive: true });
|
143
|
+
|
144
|
+
if (FILES_TO_COPY.includes(relativePath)) {
|
145
|
+
// Image like files that doesn't need proccessing
|
146
|
+
await fs.copyFile(file, destPath);
|
147
|
+
} else {
|
148
|
+
const content = await fs.readFile(file, { encoding: "utf8" });
|
149
|
+
const replaced = replacePlaceholders(content, replacements);
|
150
|
+
let formatted;
|
151
|
+
try {
|
152
|
+
formatted = await prettier.format(replaced, {
|
153
|
+
useTabs: true,
|
154
|
+
tabWidth: 4,
|
155
|
+
quoteProps: "consistent",
|
156
|
+
arrowParens: "avoid",
|
157
|
+
filepath: file,
|
158
|
+
});
|
159
|
+
// console.log(`Formatted: ${file} -> ${destPath}`);
|
160
|
+
} catch {
|
161
|
+
// console.log(`Not formatted: ${file} -> ${destPath}`);
|
162
|
+
formatted = replaced;
|
163
|
+
}
|
164
|
+
|
165
|
+
await fs.writeFile(destPath, formatted);
|
166
|
+
}
|
194
167
|
|
195
|
-
|
196
|
-
throw new Error("The component name should be a string, starting with a capital letter [A-Z][a-z], for example: Button, MyButton, etc.");
|
168
|
+
// console.log(`Processed: ${file} -> ${destPath}`);
|
197
169
|
}
|
170
|
+
}
|
198
171
|
|
199
|
-
|
200
|
-
|
172
|
+
const createWebcomponentsPackage = async () => {
|
173
|
+
let response;
|
174
|
+
if (argv.name && !isPackageNameValid(argv.name)) {
|
175
|
+
throw new Error(
|
176
|
+
"The package name should be a string, starting with letter and containing the following symbols [a-z, A-Z, 0-9].",
|
177
|
+
);
|
201
178
|
}
|
202
179
|
|
203
|
-
if (argv.
|
204
|
-
throw new Error(
|
180
|
+
if (argv.testSetup && !isTestSetupValid(argv.testSetup)) {
|
181
|
+
throw new Error(
|
182
|
+
`The test setup should be a string and one of the following options: ${SUPPORTED_TEST_SETUPS.join(", ")}`,
|
183
|
+
);
|
205
184
|
}
|
206
185
|
|
207
186
|
let packageName = argv.name || "my-package";
|
208
|
-
let componentName =
|
209
|
-
let
|
210
|
-
let typescriptSupport = !!argv.enableTypescript;
|
187
|
+
let componentName = "MyComponent";
|
188
|
+
let testSetup = argv.testSetup || "manual";
|
211
189
|
const skipSubfolder = !!argv.skipSubfolder;
|
212
190
|
|
213
191
|
if (argv.skip) {
|
214
|
-
return generateFilesContent(
|
192
|
+
return generateFilesContent(
|
193
|
+
packageName,
|
194
|
+
componentName,
|
195
|
+
skipSubfolder,
|
196
|
+
testSetup,
|
197
|
+
);
|
215
198
|
}
|
216
199
|
|
217
200
|
if (!argv.name) {
|
@@ -219,53 +202,35 @@ const createWebcomponentsPackage = async () => {
|
|
219
202
|
type: "text",
|
220
203
|
name: "name",
|
221
204
|
message: "Package name:",
|
222
|
-
validate:
|
205
|
+
validate: value =>
|
206
|
+
isPackageNameValid(value)
|
207
|
+
? true
|
208
|
+
: "Package name should be a string, starting with a letter and containing the following symbols [a-z, A-Z ,0-9, _, -].",
|
223
209
|
});
|
224
210
|
packageName = response.name;
|
225
211
|
}
|
226
212
|
|
227
|
-
if (!
|
213
|
+
if (!argv.testSetup) {
|
228
214
|
response = await prompts({
|
229
215
|
type: "select",
|
230
|
-
name: "
|
231
|
-
message: "
|
216
|
+
name: "testSetup",
|
217
|
+
message: "How would you like to set up testing?",
|
232
218
|
choices: [
|
233
|
-
{
|
234
|
-
|
235
|
-
value: false,
|
236
|
-
},
|
237
|
-
{
|
238
|
-
title: "TypeScript",
|
239
|
-
value: true,
|
240
|
-
},
|
219
|
+
{ title: "Cypress", value: "cypress" },
|
220
|
+
{ title: "I'll set it up manually", value: "manual" },
|
241
221
|
],
|
222
|
+
initial: 0,
|
242
223
|
});
|
243
|
-
typescriptSupport = response.language;
|
244
|
-
}
|
245
224
|
|
246
|
-
|
247
|
-
response = await prompts({
|
248
|
-
type: "text",
|
249
|
-
name: "componentName",
|
250
|
-
message: "Component name:",
|
251
|
-
initial: "MyComponent",
|
252
|
-
validate: (value) => isComponentNameValid(value) ? true : "Component name should follow PascalCase naming convention (f.e. Button, MyButton, etc.).",
|
253
|
-
});
|
254
|
-
componentName = response.componentName;
|
255
|
-
}
|
256
|
-
|
257
|
-
if (!argv.namespace) {
|
258
|
-
response = await prompts({
|
259
|
-
type: "text",
|
260
|
-
name: "namespace",
|
261
|
-
message: "JSDoc namespace:",
|
262
|
-
initial: "demo.components",
|
263
|
-
validate: (value) => isNamespaceValid(value) ? true : "The JSDoc namespace must start with a letter and can only contain small-case letters, numbers, dots and dashes.",
|
264
|
-
});
|
265
|
-
namespace = response.namespace;
|
225
|
+
testSetup = response.testSetup;
|
266
226
|
}
|
267
227
|
|
268
|
-
return generateFilesContent(
|
228
|
+
return generateFilesContent(
|
229
|
+
packageName,
|
230
|
+
componentName,
|
231
|
+
skipSubfolder,
|
232
|
+
testSetup,
|
233
|
+
);
|
269
234
|
};
|
270
235
|
|
271
236
|
createWebcomponentsPackage();
|
package/package.json
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ui5/create-webcomponents-package",
|
3
|
-
"version": "0.0.0-
|
3
|
+
"version": "0.0.0-b132dd7b9",
|
4
4
|
"description": "UI5 Web Components: create package",
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
6
6
|
"license": "Apache-2.0",
|
7
|
+
"type": "module",
|
7
8
|
"private": false,
|
8
9
|
"keywords": [
|
9
10
|
"openui5",
|
@@ -19,8 +20,10 @@
|
|
19
20
|
"directory": "packages/create-package"
|
20
21
|
},
|
21
22
|
"dependencies": {
|
23
|
+
"globby": "^13.1.1",
|
22
24
|
"mkdirp": "^1.0.4",
|
23
25
|
"npm-config-user-agent-parser": "^1.0.0",
|
26
|
+
"prettier": "^3.5.3",
|
24
27
|
"prompts": "^2.4.1",
|
25
28
|
"yargs": "^17.5.1"
|
26
29
|
}
|
package/template/.eslintignore
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
import {{INIT_PACKAGE_VAR_CLASS_NAME}} from "../../src/{{INIT_PACKAGE_VAR_CLASS_NAME}}.js";
|
2
|
+
|
3
|
+
describe('{{INIT_PACKAGE_VAR_CLASS_NAME}}.cy.tsx', () => {
|
4
|
+
it('playground', () => {
|
5
|
+
cy.mount(<{{INIT_PACKAGE_VAR_CLASS_NAME}} />)
|
6
|
+
|
7
|
+
cy.get("[{{INIT_PACKAGE_VAR_TAG}}]")
|
8
|
+
.click();
|
9
|
+
|
10
|
+
cy.get("[{{INIT_PACKAGE_VAR_TAG}}]")
|
11
|
+
.should("have.prop", "count", 1)
|
12
|
+
})
|
13
|
+
})
|
@@ -0,0 +1,37 @@
|
|
1
|
+
/// <reference types="cypress" />
|
2
|
+
// ***********************************************
|
3
|
+
// This example commands.ts shows you how to
|
4
|
+
// create various custom commands and overwrite
|
5
|
+
// existing commands.
|
6
|
+
//
|
7
|
+
// For more comprehensive examples of custom
|
8
|
+
// commands please read more here:
|
9
|
+
// https://on.cypress.io/custom-commands
|
10
|
+
// ***********************************************
|
11
|
+
//
|
12
|
+
//
|
13
|
+
// -- This is a parent command --
|
14
|
+
// Cypress.Commands.add('login', (email, password) => { ... })
|
15
|
+
//
|
16
|
+
//
|
17
|
+
// -- This is a child command --
|
18
|
+
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
|
19
|
+
//
|
20
|
+
//
|
21
|
+
// -- This is a dual command --
|
22
|
+
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
|
23
|
+
//
|
24
|
+
//
|
25
|
+
// -- This will overwrite an existing command --
|
26
|
+
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
|
27
|
+
//
|
28
|
+
// declare global {
|
29
|
+
// namespace Cypress {
|
30
|
+
// interface Chainable {
|
31
|
+
// login(email: string, password: string): Chainable<void>
|
32
|
+
// drag(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
|
33
|
+
// dismiss(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
|
34
|
+
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
|
35
|
+
// }
|
36
|
+
// }
|
37
|
+
// }
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
7
|
+
<title>Components App</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div data-cy-root></div>
|
11
|
+
</body>
|
12
|
+
</html>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
// ***********************************************************
|
2
|
+
// This example support/component.ts is processed and
|
3
|
+
// loaded automatically before your test files.
|
4
|
+
//
|
5
|
+
// This is a great place to put global configuration and
|
6
|
+
// behavior that modifies Cypress.
|
7
|
+
//
|
8
|
+
// You can change the location of this file or turn off
|
9
|
+
// automatically serving support files with the
|
10
|
+
// 'supportFile' configuration option.
|
11
|
+
//
|
12
|
+
// You can read more here:
|
13
|
+
// https://on.cypress.io/configuration
|
14
|
+
// ***********************************************************
|
15
|
+
|
16
|
+
// Import commands.js using ES2015 syntax:
|
17
|
+
import './commands'
|
18
|
+
|
19
|
+
import { mount } from '@ui5/cypress-ct-ui5-webc'
|
20
|
+
|
21
|
+
// Augment the Cypress namespace to include type definitions for
|
22
|
+
// your custom command.
|
23
|
+
// Alternatively, can be defined in cypress/support/component.d.ts
|
24
|
+
// with a <reference path="./component" /> at the top of your spec.
|
25
|
+
declare global {
|
26
|
+
namespace Cypress {
|
27
|
+
interface Chainable {
|
28
|
+
mount: typeof mount
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
Cypress.Commands.add('mount', mount)
|
34
|
+
|
35
|
+
// Example use:
|
36
|
+
// cy.mount(MyComponent)
|