-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(serve): Add
npm run serve
to expose js and css locally
- Loading branch information
1 parent
be259f4
commit 31e5d13
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
# Will expose the build version on: | ||
# - http://0.0.0.0:8080/docsearch.css | ||
# - http://0.0.0.0:8080/docsearch.js | ||
|
||
npm run build:css | ||
|
||
# /bundle.js in memory | ||
webpack-dev-server \ | ||
--config webpack.serve.config.babel.js \ | ||
--hot \ | ||
--inline \ | ||
--no-info & \ | ||
# rebuild docsearch.css and docsearch.min.css | ||
onchange './src/styles/*.scss' -- npm run build:css & \ | ||
|
||
wait |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import webpack from 'webpack'; | ||
import {join} from 'path'; | ||
|
||
export default { | ||
entry: './index.js', | ||
devtool: 'source-map', | ||
output: { | ||
path: './dist/cdn', | ||
filename: 'docsearch.js', | ||
library: 'docsearch', | ||
libraryTarget: 'umd' | ||
}, | ||
module: { | ||
loaders: [{ | ||
test: /\.js$/, exclude: /node_modules/, loader: 'babel' | ||
}] | ||
}, | ||
devServer: { | ||
contentBase: 'dist/cdn', | ||
host: '0.0.0.0', | ||
compress: true | ||
}, | ||
// when module not found, find locally first | ||
// helps fixing the npm link not working with webpack | ||
// http://stackoverflow.com/a/33722844/147079 | ||
resolve: { | ||
fallback: [join(__dirname, '..', 'node_modules')] | ||
}, | ||
// same issue, for loaders like babel | ||
resolveLoader: { | ||
fallback: [join(__dirname, '..', 'node_modules')] | ||
}, | ||
plugins: [ | ||
new webpack.DefinePlugin({ | ||
'process.env': { | ||
NODE_ENV: JSON.stringify(process.env.NODE_ENV) | ||
} | ||
}) | ||
] | ||
}; |