@planningcenter/icons 15.28.0-rc.0 → 15.28.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.
Files changed (2) hide show
  1. package/README.md +7 -4
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -30,10 +30,13 @@ Accessible, scaleable, cacheable, and standard SVG icons for [Planning Center](h
30
30
 
31
31
  # Development Scripts
32
32
 
33
- - `yarn build`: creates sprites/paths from SVGs & builds local documentation/reference page
34
- - `yarn start`: builds local documentation/reference page (at `http://localhost:1234` by default)
35
- - `yarn storybook`: starts local Storybook instance (at `http://localhost:6006` by default)
36
- - `yarn deploy`: builds documentation and deploys to Github pages
33
+ ```bash
34
+ yarn build # Generate sprites/paths from SVGs & build reference page
35
+ yarn start # Build and serve local docs at http://localhost:1234
36
+ yarn test # Run Jest tests
37
+ yarn storybook # Start Storybook at http://localhost:6006
38
+ yarn deploy # Build everything and deploy to GitHub Pages
39
+ ```
37
40
 
38
41
  # Reference Guides
39
42
 
package/package.json CHANGED
@@ -1,20 +1,19 @@
1
1
  {
2
2
  "name": "@planningcenter/icons",
3
- "version": "15.28.0-rc.0",
3
+ "version": "15.28.0",
4
4
  "description": "Planning Center Icons",
5
5
  "scripts": {
6
- "test": "jest",
6
+ "build": "yarn clean && yarn build:symbol && node --experimental-modules ./scripts/cli.mjs build",
7
7
  "start": "yarn build && parcel index.html --no-cache --open",
8
- "clean": "rm -rf paths sprites symbol",
9
- "build-symbol": "rollup -c rollup.config.js --bundleConfigAsCjs",
10
- "prebuild": "yarn clean && yarn build-symbol",
11
- "build": "node --experimental-modules ./scripts/cli.mjs build",
12
- "benchmark-svgo": "node ./scripts/benchmark-svgo.mjs",
8
+ "test": "jest",
13
9
  "storybook": "yarn build && storybook dev -p 6006",
14
- "build-storybook": "storybook build -o public",
15
- "build-site": "parcel build index.html --public-url https://planningcenter.github.io/icons/docs/ --dist-dir public/docs/ --no-cache",
16
- "predeploy": "yarn build && yarn build-storybook && yarn build-site",
17
- "deploy": "gh-pages -d public"
10
+ "deploy": "yarn build:all && gh-pages -d public",
11
+ "build:all": "yarn build && yarn build:storybook && yarn build:site",
12
+ "build:symbol": "rollup -c rollup.config.js --bundleConfigAsCjs",
13
+ "build:storybook": "storybook build -o public",
14
+ "build:site": "parcel build index.html --public-url https://planningcenter.github.io/icons/docs/ --dist-dir public/docs/ --no-cache",
15
+ "clean": "rm -rf paths sprites symbol",
16
+ "benchmark": "node ./scripts/benchmark-svgo.mjs"
18
17
  },
19
18
  "repository": {
20
19
  "type": "git",
@@ -89,7 +88,8 @@
89
88
  "svgo": "^4.0.0"
90
89
  },
91
90
  "dependencies": {
92
- "lodash.uniqueid": "^4.0.1"
91
+ "lodash.uniqueid": "^4.0.1",
92
+ "ora": "^9.1.0"
93
93
  },
94
94
  "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
95
95
  }