Skip to content

Commit 5777eff

Browse files
Merge release/1.32.2 into main branch (#675)
* add Chromatic (#665) * Bump async from 3.2.1 to 3.2.3 (#596) * Bump minimist from 1.2.5 to 1.2.6 (#581) * Bump nanoid from 3.1.30 to 3.3.2 (#580) * Bump node-fetch from 2.6.1 to 2.6.7 (#532) * Bump shelljs from 0.8.4 to 0.8.5 (#520) * updates to Accordion v2 (#673) * Bump terser from 4.8.0 to 4.8.1 (#674) * Prepare release 1.32.2
1 parent a05d024 commit 5777eff

File tree

11 files changed

+6276
-193
lines changed

11 files changed

+6276
-193
lines changed

.github/workflows/chromatic.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# .github/workflows/chromatic.yml
2+
3+
# Workflow name
4+
name: 'Chromatic'
5+
6+
# Event for the workflow
7+
on: push
8+
9+
# List of jobs
10+
jobs:
11+
chromatic-deployment:
12+
runs-on: ubuntu-latest
13+
env:
14+
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
15+
steps:
16+
- uses: actions/checkout@v2
17+
with:
18+
fetch-depth: 0 # 👈 Required to retrieve git history
19+
- uses: actions/setup-node@v1
20+
with:
21+
node-version: '14.17.4'
22+
- run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ &&
23+
npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN
24+
- run: yarn
25+
- name: Publish to Chromatic
26+
uses: chromaui/action@v1
27+
with:
28+
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

build-storybook.log

Lines changed: 4344 additions & 0 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@user-interviews/ui-design-system",
3-
"version": "1.32.1",
3+
"version": "1.32.2",
44
"dependencies": {
55
"react-bootstrap": "^2.0.2",
66
"react-router-dom": "^5.2.0",
@@ -10,15 +10,16 @@
1010
},
1111
"scripts": {
1212
"build": "NODE_ENV=production babel src --out-dir lib --copy-files",
13-
"lint": "eslint . --ext .js,.jsx",
14-
"storybook": "start-storybook -p 9009 -s public",
1513
"build-storybook": "build-storybook -s public",
1614
"build-storybook-docs": "build-storybook -s public --docs",
15+
"chromatic": "npx chromatic",
1716
"deploy-storybook": "storybook-to-ghpages",
17+
"lint": "eslint . --ext .js,.jsx",
1818
"prepublishOnly": "yarn build",
1919
"rs:link": "bin/link-rs",
2020
"rs:link:watch": "./node_modules/nodemon/bin/nodemon.js",
2121
"rs:unlink": "bin/unlink-rs",
22+
"storybook": "start-storybook -p 9009 -s public",
2223
"test": "jest"
2324
},
2425
"eslintConfig": {
@@ -90,6 +91,7 @@
9091
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
9192
"babel-preset-react": "^6.24.1",
9293
"bootstrap": "5.0",
94+
"chromatic": "^6.7.0",
9395
"classnames": "^2.2.5",
9496
"css-loader": "^3.4.2",
9597
"cypress": "9.3.1",
@@ -138,7 +140,19 @@
138140
"publishConfig": {
139141
"registry": "https://npm.pkg.github.com/"
140142
},
141-
"repository": "https://github.com/user-interviews/ui-design-system.git",
142-
"author": "Dave Ferris <[email protected]>",
143-
"license": "MIT"
143+
"repository": {
144+
"type": "git",
145+
"url": "git+https://github.com/user-interviews/ui-design-system.git"
146+
},
147+
"author": {
148+
"name": "Dave Ferris",
149+
"email": "[email protected]"
150+
},
151+
"license": "MIT",
152+
"bugs": {
153+
"url": "https://github.com/user-interviews/ui-design-system/issues"
154+
},
155+
"readme": "ERROR: No README data found!",
156+
"homepage": "https://github.com/user-interviews/ui-design-system#readme",
157+
"_id": "@user-interviews/[email protected]"
144158
}

0 commit comments

Comments
 (0)