featuredrop 2.3.0 → 2.4.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 +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "featuredrop",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Lightweight feature discovery system. Show 'New' badges that auto-expire.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -264,12 +264,13 @@
|
|
|
264
264
|
"playground": "pnpm --dir examples/sandbox-react dev",
|
|
265
265
|
"playground:build": "pnpm --dir examples/sandbox-react build",
|
|
266
266
|
"docs:install": "pnpm --dir apps/docs install",
|
|
267
|
-
"docs:dev": "pnpm --dir apps/docs dev",
|
|
267
|
+
"docs:dev": "lsof -ti:3003 | xargs kill -9 2>/dev/null; pnpm --dir apps/docs dev -p 3003",
|
|
268
268
|
"docs:build": "pnpm --dir apps/docs build",
|
|
269
269
|
"docs:start": "pnpm --dir apps/docs start",
|
|
270
270
|
"featuredrop:build": "node ./dist/featuredrop.cjs build",
|
|
271
271
|
"featuredrop:validate": "node ./dist/featuredrop.cjs validate",
|
|
272
|
-
"dev": "
|
|
272
|
+
"dev": "lsof -ti:3003 | xargs kill -9 2>/dev/null; pnpm --dir apps/docs dev -p 3003",
|
|
273
|
+
"dev:lib": "tsup --watch",
|
|
273
274
|
"test": "vitest run",
|
|
274
275
|
"test:watch": "vitest",
|
|
275
276
|
"test:coverage": "vitest run --coverage",
|