Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Commit

Permalink
feat: copy icons to root on publish
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-baer committed Apr 17, 2020
1 parent ce2bd43 commit a7bd319
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ __reports__
.eslintcache
.yarn-integrity
.env
/*.svg

# Packages #

Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@
"sideEffects": false,
"files": [
"manifest.json",
"icons",
"dist"
"dist",
"*.svg"
],
"scripts": {
"build": "ts-node ./scripts/node.ts",
"lint": "foundry run eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --format junit -o __reports__/eslint-results.xml",
"prerelease": "yarn build",
"release": "foundry run semantic-release"
"prerelease": "yarn build && cp icons/* .",
"release": "foundry run semantic-release",
"postrelease": "rm -f *.svg"
},
"devDependencies": {
"@babel/core": "^7.9.0",
Expand Down

0 comments on commit a7bd319

Please sign in to comment.