Skip to content

Commit

Permalink
chore: add a test to ensure yarn can build the package and fix an out…
Browse files Browse the repository at this point in the history
…put file directory (microsoft#3428)
  • Loading branch information
janechu authored Jul 1, 2020
1 parent 020c3ba commit c6cd0dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sites/fast-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"start": "webpack-dev-server --config=./webpack.dev.js --history-api-fallback --progress",
"build": "webpack --config=./webpack.prod.js",
"prettier": "prettier --config ../../.prettierrc --write \"**/*.ts\"",
"prettier:diff": "prettier --config ../../.prettierrc \"**/*.ts\" --list-different"
"prettier:diff": "prettier --config ../../.prettierrc \"**/*.ts\" --list-different",
"test": "yarn build"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion sites/fast-website/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = {
__dirname,
"../site-utilities/statics/assets/favicon.ico"
),
to: outDir,
to: publicDir,
},
],
}),
Expand Down

0 comments on commit c6cd0dd

Please sign in to comment.