@wyxos/vibe 2.1.0 → 2.1.1
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/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wyxos/vibe",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "A high-performance, responsive masonry layout engine for Vue 3 with built-in infinite scrolling and virtualization.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -42,9 +42,10 @@
|
|
|
42
42
|
"build": "vite build && node write-cname.js",
|
|
43
43
|
"build:lib": "vite build -c vite.config.lib.js",
|
|
44
44
|
"build:types": "vue-tsc -p tsconfig.lib.json",
|
|
45
|
+
"postversion": "npm run build",
|
|
45
46
|
"prepublishOnly": "npm run check && npm run build:lib && npm run build:types",
|
|
46
47
|
"preview": "vite preview",
|
|
47
|
-
"check": "npm -s run lint && npm -s run typecheck && npm -s run test",
|
|
48
|
+
"check": "node -e \"console.log('→ Lint')\" && npm -s run lint && node -e \"console.log('✓ Lint')\" && node -e \"console.log('→ Typecheck')\" && npm -s run typecheck && node -e \"console.log('✓ Typecheck')\" && node -e \"console.log('→ Test')\" && npm -s run test",
|
|
48
49
|
"lint": "eslint .",
|
|
49
50
|
"lint:fix": "eslint . --fix",
|
|
50
51
|
"release": "npx @wyxos/zephyr --type=node",
|