Skip to content

Commit

Permalink
chore(build): fix ignore pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
aalexeenco committed Apr 10, 2021
1 parent 31b5e95 commit f398b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: 15
- name: Lint and test
- run: |
npm ci
npm run lint
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "module",
"scripts": {
"build": "babel --delete-dir-on-start --keep-file-extension --env-name production -D --out-dir ./dist src",
"postbuild": "babel -D --ignore node_modules/** --out-dir ./dist/js ./node_modules/@webcomponents/custom-elements/custom-elements.min.js",
"postbuild": "babel -D --ignore node_modules --out-dir ./dist/js ./node_modules/@webcomponents/custom-elements/custom-elements.min.js",
"coverage:ci": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --ci --coverage",
"lint": "eslint --ext .js,.mjs ./src/js/",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js"
Expand Down

0 comments on commit f398b96

Please sign in to comment.