jcicl 0.0.3 → 0.0.9

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 +5 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jcicl",
3
3
  "private": false,
4
- "version": "0.0.3",
4
+ "version": "0.0.9",
5
5
  "description": "Component library for the websites of Johnson County Iowa",
6
6
  "license": "MIT",
7
7
  "homepage": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster",
@@ -22,11 +22,11 @@
22
22
  "types": "./index.d.ts",
23
23
  "scripts": {
24
24
  "start": "storybook dev -p 7007",
25
- "build": "tsc -b && vite build && npm run postbuild",
25
+ "updateVersion": "npm version patch --no-git-tag-update --force",
26
+ "build": "tsc -b && vite build",
26
27
  "postbuild": "shx cp package.json dist/package.json && shx cp README.md dist/README.md",
27
- "publish": "npm publish ./dist",
28
- "pp": "npm run postbuild && npm run publish",
29
- "bp": "npm run build && npm run publish",
28
+ "push": "npm publish ./dist",
29
+ "bp": "npm run updateVersion && npm run build && npm run postbuild && npm run push",
30
30
  "lint": "eslint .",
31
31
  "lint:fix": "eslint . --fix",
32
32
  "format": "prettier --check .",