Skip to content

Commit

Permalink
Exclude files from npm package (#75)
Browse files Browse the repository at this point in the history
Exclude files from npm package, fix an issue with build generated in dist instead of lib folder. Fix issue link homepage in READEME file.
  • Loading branch information
gibbok committed Feb 28, 2020
1 parent e114f6d commit cf4084a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 37 deletions.
17 changes: 17 additions & 0 deletions .npmignore
@@ -0,0 +1,17 @@
*.json
yarn.lock
src
coverage
.prettierrc.json
.travis.yml
.vscode
.nvmrc
bin
.idea
*.iml
tsconfig.json
jest.config.js
jest.setup.js
.loki
.storybook
src/__tests__
34 changes: 0 additions & 34 deletions ToDos

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -30,7 +30,7 @@
"widgets"
],
"scripts": {
"clean": "rimraf ./dist ./coverage",
"clean": "rimraf ./lib ./coverage",
"tsc": "tsc",
"tsc:watch": "tsc --watch --pretty",
"build": "tsc -p ./tsconfig.prod.json",
Expand All @@ -55,7 +55,7 @@
"bugs": {
"url": "https://github.com/Actyx/actyx-ui/issues"
},
"homepage": "https://github.com/gibbok/actyx-ui-library#readme",
"homepage": "https://github.com/Actyx/actyx-ui#readme",
"dependencies": {
"classnames": "^2.2.6",
"jss-preset-default": "^10.0.3",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "./dist/",
"outDir": "./lib/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
Expand Down

0 comments on commit cf4084a

Please sign in to comment.