Skip to content

Commit 59f3a68

Browse files
authored
Merge pull request #14 from wayfair-incubator/vpodk-webpack
Added dist thru webpack
2 parents 2475ac5 + e377fb7 commit 59f3a68

9 files changed

+13590
-2474
lines changed

.github/workflows/npm-publish.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14.x, 15.x]
16+
node-version: [14.x, 15.x, 16.x]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -36,6 +36,7 @@ jobs:
3636
node-version: 15
3737
registry-url: https://registry.npmjs.org/
3838
- run: npm install
39+
- run: npm run build --if-present
3940
- run: npm publish --access public
4041
env:
4142
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
.DS_Store
12
node_modules
3+
coverage
4+
dist

.npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@ __tests__
33
node_modules
44
.markdownlint.json
55
*.md
6+
.DS_Store
7+
coverage
8+
src
9+
tsconfig.json
10+
webpack.config.js

0 commit comments

Comments
 (0)