@heartpace/icons 0.1.4 → 0.1.6

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": "@heartpace/icons",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "SVG icon library with recursive autogeneration",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -26,9 +26,11 @@
26
26
  ],
27
27
  "scripts": {
28
28
  "generate": "node scripts/generate.js",
29
- "build": "npm run generate && tsup && node scripts/copy-categories.js",
29
+ "copy-categories": "node scripts/copy-categories.js",
30
+ "build": "npm run generate && tsup && npm run copy-categories",
30
31
  "dev": "npm run generate && tsup --watch",
31
- "prepublishOnly": "npm run build"
32
+ "prepublishOnly": "npm run build",
33
+ "replace-dist": "bash -c 'if [ -z \"$1\" ]; then echo \"Error: Please provide a module name\"; exit 1; fi && if [ ! -d \"../$1\" ]; then echo \"Error: Directory ../$1 does not exist\"; exit 1; fi && rm -rf \"../$1/node_modules/@heartpace/icons/dist\" && cp -r ./dist \"../$1/node_modules/@heartpace/icons/\"' --"
32
34
  },
33
35
  "keywords": [
34
36
  "icons",
@@ -39,15 +41,15 @@
39
41
  "react-icons",
40
42
  "svg-icons"
41
43
  ],
42
- "author": "Your Name <your.email@example.com>",
44
+ "author": "Heartpace",
43
45
  "license": "MIT",
44
46
  "repository": {
45
47
  "type": "git",
46
- "url": "git+https://github.com/your-username/heartpace-icons.git"
48
+ "url": "git+https://bitbucket.org/heartpace/icons-frontend.git"
47
49
  },
48
- "homepage": "https://github.com/your-username/heartpace-icons#readme",
50
+ "homepage": "https://bitbucket.org/heartpace/icons-frontend#readme",
49
51
  "bugs": {
50
- "url": "https://github.com/your-username/heartpace-icons/issues"
52
+ "url": "https://bitbucket.org/heartpace/icons-frontend/issues"
51
53
  },
52
54
  "publishConfig": {
53
55
  "access": "public"