Skip to content

Commit

Permalink
v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoo0122 authored Aug 11, 2020
2 parents 26308a5 + 5069437 commit 0521de7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
19 changes: 9 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
workspace_root: &workspace_root
/home/circleci/design-system
references:
workspace_root: &workspace_root
/home/circleci/design-system

attach_workspace: &attach_workspace
attach_workspace:
at: *workspace_root
attach_workspace: &attach_workspace
attach_workspace:
at: *workspace_root

defaults: &defaults
resource_class: large
Expand Down Expand Up @@ -61,11 +62,9 @@ jobs:
steps:
- *attach_workspace
- run:
name: build icon...
command: npm run build:icon
- run:
name: publish to npm registry...
command: npm publish
name: Authenticate to npm registry
command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" > .npmrc
- run: npm publish

workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@channel.io/design-system",
"version": "0.2.4",
"version": "0.2.5",
"description": "Design System by Channel",
"repository": {
"type": "git",
Expand All @@ -26,7 +26,7 @@
"jest:watch": "cross-env BABEL_ENV=test jest --watch",
"build": "cross-env BABEL_ENV=build rollup -c",
"prebuild": "npm run typecheck",
"prepublishOnly": "npm run build",
"prepublishOnly": "npm run build:icon && npm run build",
"build:storybook": "build-storybook",
"build:icon": "./scripts/build-icon.sh",
"deploy:storybook": "storybook-to-ghpages --remote=upstream"
Expand Down

0 comments on commit 0521de7

Please sign in to comment.