diff options
author | 2018-07-19 12:05:50 +0300 | |
---|---|---|
committer | 2018-07-19 13:30:34 +0300 | |
commit | a2c544de543343ad4135f0419f1548ed1cf502cb (patch) | |
tree | a89bfc6b50a322a2411fd4941c3afe1f57474471 /webpack.config.js | |
parent | 5c580897a8a46398876dd40ae58758663eed52d9 (diff) |
sdc-pubsub first commit
Committed sdc-pubsub code for the first time to LF repo
Change-Id: I1e26f7fe8b2f1747169e3101e0705d1c89d3f56b
Issue-ID: SDC-1537
Signed-off-by: Idan Amit <ia096e@intl.att.com>
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..73c10dd --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,68 @@ +var path = require("path"); +var webpack = require("webpack"); +var UglifyJsPlugin = require("uglifyjs-webpack-plugin"); + +var PATHS = { + entryPoint: path.resolve(__dirname, 'index.ts'), + bundles: path.resolve(__dirname, 'dist'), +} + +var config = { + // These are the entry point of our library. We tell webpack to use + // the name we assign later, when creating the bundle. We also use + // the name to filter the second entry point for applying code + // minification via UglifyJS + entry: { + 'sdc-pubsub': [PATHS.entryPoint], + 'sdc-pubsub.min': [PATHS.entryPoint] + }, + // The output defines how and where we want the bundles. The special + // value `[name]` in `filename` tell Webpack to use the name we defined above. + // We target a UMD and name it MyLib. When including the bundle in the browser + // it will be accessible at `window.MyLib` + output: { + path: PATHS.bundles, + filename: '[name].js', + libraryTarget: 'umd', + library: 'sdcPubSub', + umdNamedDefine: true + }, + // Add resolve for `tsx` and `ts` files, otherwise Webpack would + // only look for common JavaScript file extension (.js) + resolve: { + extensions: ['.ts', '.js'] + }, + // Activate source maps for the bundles in order to preserve the original + // source when the user debugs the application + devtool: 'source-map', + plugins: [ + // Apply minification only on the second bundle by + // using a RegEx on the name, which must end with `.min.js` + // NB: Remember to activate sourceMaps in UglifyJsPlugin + // since they are disabled by default! + new UglifyJsPlugin({ + sourceMap: true, + include: /\.min\.js$/, + }) + ], + module: { + // Webpack doesn't understand TypeScript files and a loader is needed. + // `node_modules` folder is excluded in order to prevent problems with + // the library dependencies, as well as `__tests__` folders that + // contain the tests for the library + rules: [ + { + test: /\.ts?$/, + use: [ + { + loader: 'awesome-typescript-loader', + options: { + configFileName: 'tsconfig.json' + } + } + ] + }] + } +} + +module.exports = config;
\ No newline at end of file |