Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

AP-1023 Use rollup to bundle library #149

Merged
merged 3 commits into from
Dec 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ tsconfig.tsbuildinfo
.eslintcache

# Other modules
/*-????????.js*
/Button
/colors
/emotionCacheProviderFactory
Expand Down
18 changes: 18 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,21 @@ build-reset.ts
# ESLint stuff
.eslintcache
.eslintrc.js

# Everything else
__mocks__/
.autorc
.circleci/config.yml
.envrc
.gitattributes
.prettierrc.toml
CHANGELOG.md
components-util
coverage
jest.config.js
netlify.toml
README.md
rollup.config.js
scripts
tsconfig.build.json
typings
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@
}
],
"markdown.extension.toc.githubCompatibility": true,
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Loading