Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Commit

Permalink
feat: ignore unnecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
chinu-cho committed Aug 16, 2019
1 parent 6e52f52 commit e610e95
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
yarn build
- name: test
run: yarn test
- name: Upload coverage to Codecov
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
11 changes: 6 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish
uses: actions/npm@master
with:
args: "publish --access public"
secrets: ${{secrets.NPM_AUTH_TOKEN}}
- name: install, build
run: |
yarn install
yarn build
- name: test
run: yarn test
- name: publish
uses: actions/npm@master
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
with:
args: 'publish --access public'
9 changes: 9 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
artifacts
coverage
junit.xml
.babelrc
.gitignore
jest.config.json
jsonToHtmlTable-test.js
webpack.config.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"webpack-cli": "^3.3.6"
},
"name": "jsontohtmltable",
"version": "1.1.0",
"version": "1.1.1",
"description": "Make json more readable as html table",
"main": "dist/jsonToHtmlTable.min.js",
"module": "jsonToHtmlTable.js",
Expand Down

0 comments on commit e610e95

Please sign in to comment.