mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
4387381fd1
* deps: bump node-libcurl to latest prerelease version * Add .npmrc, bump Electron to 3.1.13, remove electron-rebuild * Minor tweaks * package locks * Bump version * Switch to font-manager and fix fsevents rimraf * Try generating npmrc inside build/ * Try uninstall of fsevents instead * Bump * Try npm env vars * Extra .npmrc * Try npm env vars in all CI * Fix insomnia-cookies dependencies * Fix typo * Loosen nvmrc version * Remove npm uninstalls * Build outside of Docker * Remove Docker, build all on GH Actions * Bump Core version * Disable Snapcraft for now * Bump * Disable snap for Designer too * Update product name for Core * Update test.yml * Remove Travis file * Make userData folder explicit and add Curl types * Remove old Kong icon * Remove curl.js adapter * Revert productName * Fix release date * Try remove windows build tools from CI * Add comment about Snap deploys * Remove the pane border on Windows (no longer necessary) Co-authored-by: Jonathan Cardoso Machado <me@jonathancardoso.com>
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
const webpack = require('webpack');
|
|
const baseConfig = require('./webpack.config.base.babel');
|
|
const pkg = require('../package.json');
|
|
|
|
const PORT = pkg.dev['dev-server-port'];
|
|
|
|
const d = new Date();
|
|
const date = d.toLocaleDateString();
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
devtool: 'eval-source-map',
|
|
mode: 'development',
|
|
entry: [
|
|
`webpack-dev-server/client?http://localhost:${PORT}`,
|
|
'webpack/hot/only-dev-server',
|
|
...baseConfig.entry,
|
|
],
|
|
output: {
|
|
...baseConfig.output,
|
|
publicPath: '/',
|
|
},
|
|
devServer: {
|
|
host: 'localhost',
|
|
port: PORT,
|
|
publicPath: '/',
|
|
hot: true,
|
|
disableHostCheck: true,
|
|
},
|
|
plugins: [
|
|
...baseConfig.plugins,
|
|
new webpack.LoaderOptionsPlugin({ debug: true }), // Legacy global loader option
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoEmitOnErrorsPlugin(),
|
|
new webpack.NamedModulesPlugin(),
|
|
new webpack.DefinePlugin({
|
|
__DEV__: true,
|
|
'process.env.NODE_ENV': JSON.stringify('development'),
|
|
'process.env.INSOMNIA_ENV': JSON.stringify('development'),
|
|
}),
|
|
],
|
|
};
|