Skip to content

Commit

Permalink
Remove unused artifacts from package (#143)
Browse files Browse the repository at this point in the history
* update git ignore

* improve script clean

* upgrade version

* better npm ignore

* fix .out
  • Loading branch information
gibbok committed Jun 5, 2020
1 parent 6cdbe82 commit bfc0e94
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 19 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Project
dist
lib
.out

Expand Down Expand Up @@ -53,9 +52,6 @@ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

Expand Down
31 changes: 19 additions & 12 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
*.json
yarn.lock
src
coverage
.editorconfig
.eslintrc.js
.idea
.loki
.nvmrc
.out
.prettierrc.js
.prettierrc.json
.storybook
.travis.yml
.vscode
.nvmrc
bin
.idea
*__tests__
*.iml
tsconfig.json
*.json
*.tgz
add-license-text
bin
coverage
jest.config.js
jest.setup.js
.loki
.storybook
src/__tests__
.out
src
tsconfig.json
tsconfig.prod.json
tutorials
yarn.lock
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,7 +1,7 @@
{
"name": "@actyx/industrial-ui",
"private": false,
"version": "1.0.3",
"version": "1.0.4",
"author": "Actyx AG",
"license": "Apache-2.0",
"description": "Industrial UI - Simple, modular UI Components for Shop Floor Applications",
Expand Down Expand Up @@ -35,7 +35,7 @@
"widgets"
],
"scripts": {
"clean": "rimraf ./lib ./coverage",
"clean": "rimraf ./lib ./coverage .out",
"check": "npm run clean && npm run lint && npm run tsc && npm run test",
"tsc": "tsc",
"tsc:watch": "tsc --watch --pretty",
Expand Down

0 comments on commit bfc0e94

Please sign in to comment.