world-map-svg 0.4.4 → 0.5.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "world-map-svg",
3
- "version": "0.4.4",
3
+ "version": "0.5.0",
4
4
  "description": "Interactive SVG world map React component",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -39,7 +39,8 @@
39
39
  ],
40
40
  "scripts": {
41
41
  "dev": "vite --config playground/vite.config.ts",
42
- "build": "tsc -b && vite build && tsc -p tsconfig.build.json",
42
+ "verify": "node scripts/verify.mjs",
43
+ "build": "npm run verify && tsc -b && vite build && tsc -p tsconfig.build.json",
43
44
  "lint": "eslint .",
44
45
  "prepublishOnly": "npm run build && npm run lint"
45
46
  },