@mxenabled/connect-widget 0.0.5 → 0.0.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/dist/index.es.js +247 -427
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -0
- package/package.json +9 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Last build: Mon Oct 28 11:12:54 2024
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mxenabled/connect-widget",
|
|
3
3
|
"description": "A simple ui library for React",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.7",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
@@ -13,12 +13,17 @@
|
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "vite",
|
|
16
|
-
"build": "tsc && vite build",
|
|
16
|
+
"build": "tsc && vite build && npm run logBuildDate",
|
|
17
17
|
"lint": "eslint . --ext ts,tsx,js,jsx,md --report-unused-disable-directives --max-warnings 14",
|
|
18
18
|
"preview": "vite preview",
|
|
19
19
|
"prepare": "husky",
|
|
20
|
-
"test": "vitest",
|
|
21
|
-
"i18n": "node scripts/i18n.js"
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"i18n": "node scripts/i18n.js",
|
|
22
|
+
"logBuildDate": "echo 'Last build: '$(date \"+%c\") | tee ./dist/lastBuild.txt",
|
|
23
|
+
"testAndBuild": "npm run test && npm run build",
|
|
24
|
+
"publish:patch": "npm run testAndBuild && npm version patch && git push && git push origin --tags && npm publish",
|
|
25
|
+
"publish:minor": "npm run testAndBuild && npm version minor && git push && git push origin --tags && npm publish",
|
|
26
|
+
"publish:major": "npm run testAndBuild && npm version major && git push && git push origin --tags && npm publish"
|
|
22
27
|
},
|
|
23
28
|
"dependencies": {
|
|
24
29
|
"@emotion/react": "^11.13.0",
|