@pairbo/ui-kit 0.0.5 → 0.0.6
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/README.md +2 -97
- package/dist/pairbo.es.js +17921 -0
- package/dist/pairbo.umd.js +1145 -0
- package/package.json +12 -2
- package/dist/assets/main-DNmeOojs.js +0 -1145
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pairbo/ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"readme": "./README-NPM.md",
|
|
@@ -12,7 +12,15 @@
|
|
|
12
12
|
"prepare": "husky",
|
|
13
13
|
"eleventy": "eleventy --config=./docs/eleventy.config.mjs",
|
|
14
14
|
"eleventy:serve": "eleventy --serve --config=./docs/eleventy.config.mjs",
|
|
15
|
-
"create": "plop --plopfile scripts/plop/plopfile.js"
|
|
15
|
+
"create": "plop --plopfile scripts/plop/plopfile.js",
|
|
16
|
+
"use:npmReadme": "mv 'README.md' 'git.README.md' && mv 'npm.README.md' 'README.md'",
|
|
17
|
+
"use:gitReadme": "mv 'README.md' 'npm.README.md' && mv 'git.README.md' 'README.md'",
|
|
18
|
+
"prepublish": "run-s build npm:version-patch use:npmReadme",
|
|
19
|
+
"postpublish": "run-s use:gitReadme",
|
|
20
|
+
"npm:version-patch": "npm version patch",
|
|
21
|
+
"npm:public-publish": "npm publish --access public",
|
|
22
|
+
"publishToNPM": "run-s prepublish npm:public-publish postpublish",
|
|
23
|
+
"npm:publish": "node ./scripts/publish-cli.js"
|
|
16
24
|
},
|
|
17
25
|
"keywords": [],
|
|
18
26
|
"author": "",
|
|
@@ -35,7 +43,9 @@
|
|
|
35
43
|
"eslint-plugin-promise": "^6.6.0",
|
|
36
44
|
"globals": "^15.14.0",
|
|
37
45
|
"husky": "^9.1.7",
|
|
46
|
+
"inquirer": "^12.4.2",
|
|
38
47
|
"lint-staged": "^15.4.3",
|
|
48
|
+
"npm-run-all": "^4.1.5",
|
|
39
49
|
"plop": "^4.0.1",
|
|
40
50
|
"prettier": "^3.5.0",
|
|
41
51
|
"sinon": "^19.0.2",
|