react-pivottable-plus 1.0.12 → 1.0.13

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.
Files changed (1) hide show
  1. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-pivottable-plus",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "A React-based pivot table with grouping and modern UI (Tailwind, Radix, Shadcn)",
5
5
  "main": "dist/PivotTableUI.js",
6
6
  "module": "dist/PivotTableUI.js",
@@ -35,9 +35,9 @@
35
35
  "build:examples": "vite build",
36
36
  "doPublish": "npm run build && npm publish",
37
37
  "postpublish": "npm run clean",
38
- "bump": "node scripts/bump-version.js patch",
39
- "bump:minor": "node scripts/bump-version.js minor",
40
- "bump:major": "node scripts/bump-version.js major",
38
+ "bump": "node scripts/bump-version.mjs patch",
39
+ "bump:minor": "node scripts/bump-version.mjs minor",
40
+ "bump:major": "node scripts/bump-version.mjs major",
41
41
  "docs:dev": "cd docs && next dev -p 3001",
42
42
  "docs:build": "cd docs && npm run build",
43
43
  "release": "npm run bump && git add package.json && git commit -m \"chore: bump version\" && git push origin master"