Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit 6809a70

Browse files
committed
Fix build process
1 parent 21dc5c9 commit 6809a70

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ before_install:
66
- npm install -g webpack
77

88
script:
9-
- webpack
9+
- npm run build
1010

1111
deploy:
1212
provider: npm

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualforce-html-webpack-plugin",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "A Webpack plugin to generate HTML file from Salesforce Visualforce page",
55
"repository": {
66
"type": "git",
@@ -21,9 +21,12 @@
2121
"homepage": "https://github.com/coveo/visualforce-html-webpack-plugin#readme",
2222
"main": "dist/index.js",
2323
"scripts": {
24-
"build": "tsc",
25-
"watch": "tsc --watch"
24+
"build": "webpack"
2625
},
26+
"files": [
27+
"dist",
28+
"src"
29+
],
2730
"devDependencies": {
2831
"@types/glob": "^5.0.30",
2932
"@types/node": "^7.0.23",
@@ -36,4 +39,4 @@
3639
"promise": "^7.1.1",
3740
"cheerio": "^1.0.0-rc.2"
3841
}
39-
}
42+
}

0 commit comments

Comments
 (0)