@blorkfield/blork-tabs 0.1.3 → 0.2.0
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 +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blorkfield/blork-tabs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A framework-agnostic tab/panel management system with snapping and docking",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean && cp styles.css dist/",
|
|
23
|
-
"
|
|
23
|
+
"build:watch": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
24
|
+
"dev": "npm run build && npm run dev --prefix testbed",
|
|
25
|
+
"dev:install": "npm install --prefix testbed",
|
|
24
26
|
"lint": "eslint src/",
|
|
25
27
|
"test": "vitest run",
|
|
26
28
|
"test:watch": "vitest",
|