Skip to content

Commit

Permalink
Merge pull request #7 from amalv/add-dist-folder-for-npm-distribution
Browse files Browse the repository at this point in the history
feat: Add dist folder for npm distribution
  • Loading branch information
amalv authored Mar 11, 2020
2 parents 691af81 + d9abf69 commit 1581b0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
/coverage

# production
/dist
/build
/storybook-static

# misc
.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build": "tsc",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"outDir": "dist",
"target": "es5",
"lib": [
"dom",
Expand All @@ -16,7 +17,6 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
Expand Down

1 comment on commit 1581b0b

@amalv
Copy link
Owner Author

@amalv amalv commented on 1581b0b Mar 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for website ready!

Built with commit 6b53005f1ae7ccab33eb2bf37c2bd2183040766e

https://circleback-design-system-5cbkuayky.now.sh

Please sign in to comment.