Skip to content

Commit e674e36

Browse files
committed
docs: publish examples
1 parent 2df10c7 commit e674e36

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

netlify.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
# Directory (relative to root of your repo) that contains the deploy-ready
55
# HTML files and assets generated by the build. If a base directory has
66
# been specified, include it in the publish directory path.
7-
publish = "example/build"
7+
command = "yarn run build:examples"
8+
publish = "dist"
89

910
# COMMENT: NODE_VERSION in root `.nvmrc` takes priority
1011
# COMMENT: Why we specify YARN_FLAGS: https://www.netlify.com/docs/build-gotchas/#yarn
@@ -17,4 +18,4 @@
1718
[[redirects]]
1819
from = "/*"
1920
to = "/index.html"
20-
status = 200
21+
status = 200

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"scripts": {
1414
"build": "webpack --progress --colors --config ./.webpack/webpack.config.js -d",
1515
"build:release": "webpack --progress --colors --config ./.webpack/webpack.config.js -p",
16-
"dev": "webpack-dev-server --config ./webpack.dev.js --watch",
16+
"build:examples": "webpack --progress --colors --config ./.webpack/webpack.dev.js -d",
17+
"dev": "webpack-dev-server --config ./.webpack/webpack.dev.js --watch",
1718
"start": "yarn run dev",
1819
"predeploy": "cd example && yarn install && yarn run build:release",
1920
"prepublishOnly": "yarn run build && yarn run build:release",

0 commit comments

Comments
 (0)