@cementic/cementic-test 0.2.5 → 0.2.7
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/CODE_OF_CONDUCT.md +46 -0
- package/CONTRIBUTING.md +61 -0
- package/README.md +229 -301
- package/dist/cli.js +666 -186
- package/dist/cli.js.map +1 -1
- package/package.json +6 -2
- package/scripts/postinstall-banner.cjs +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cementic/cementic-test",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "CementicTest CLI (ct): capture pages, normalize cases, generate Playwright tests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -10,14 +10,18 @@
|
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist/**/*",
|
|
13
|
+
"scripts/postinstall-banner.cjs",
|
|
13
14
|
"LICENSE",
|
|
14
|
-
"README.md"
|
|
15
|
+
"README.md",
|
|
16
|
+
"CONTRIBUTING.md",
|
|
17
|
+
"CODE_OF_CONDUCT.md"
|
|
15
18
|
],
|
|
16
19
|
"scripts": {
|
|
17
20
|
"build": "tsup && node scripts/copy-templates.cjs",
|
|
18
21
|
"dev": "tsup --watch",
|
|
19
22
|
"test": "npm run build && node --test test/*.test.mjs",
|
|
20
23
|
"lint": "echo \"(add linter later)\"",
|
|
24
|
+
"postinstall": "node scripts/postinstall-banner.cjs",
|
|
21
25
|
"prepublishOnly": "npm run build"
|
|
22
26
|
},
|
|
23
27
|
"engines": {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
if (process.env.CI) {
|
|
2
|
+
process.exit(0);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
console.log(`
|
|
6
|
+
⚡ CementicTest CLI
|
|
7
|
+
Turn plain English into test automation momentum
|
|
8
|
+
|
|
9
|
+
🌐 Web app coming soon
|
|
10
|
+
https://cementic.testamplify.io/
|
|
11
|
+
|
|
12
|
+
💬 Join community
|
|
13
|
+
https://t.me/+Wbx7oK7ivqgxZGJh
|
|
14
|
+
`);
|