forked from obniz/obniz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.node6_10.js
83 lines (81 loc) · 2.18 KB
/
webpack.node6_10.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// output.pathに絶対パスを指定する必要があるため、pathモジュールを読み込んでおく
const path = require('path');
// const base = require("./webpack.config.js");
//
// const config = JSON.parse(JSON.stringify(base));
// config.stats.warningsFilter = base.stats.warningsFilter;
//
// config.output.filename = 'obniz.node6_101.js';
// delete config.output.library;
//
// config.module = config.module || {};
// config.module.rules = config.module.rules || [];
//
// config.module.rules.push({
// test: /\.js$/,
// // exclude: /(node_modules|bower_components)/,
// use: {
// loader: 'babel-loader',
// options: {
// "presets": [
// ["env", {"targets": {"node": "6.10"}}]
// ]
// }
// }
// });
//
//
// module.exports = config;
const nodeExternals = require('webpack-node-externals');
module.exports = {
// モードの設定、v4系以降はmodeを指定しないと、webpack実行時に警告が出る
mode: 'development',
target: 'node',
// エントリーポイントの設定
entry: './obniz/index.js',
// entry: './test.js',
// 出力の設定
output: {
// 出力するファイル名
filename: 'obniz.node6_10.js',
// 出力先のパス(v2系以降は絶対パスを指定する必要がある)
path: path.join(__dirname),
library: 'Obniz',
libraryTarget: 'umd',
},
devtool: 'none',
module: {
rules: [
{
test: /\.(yml|yaml)$/,
use: [
{
loader: require.resolve('json-loader'),
},
{
// loader: require.resolve('yaml-loader')
loader: require.resolve(
'./obniz/libs/webpackReplace/yaml-schema-loader'
),
},
],
},
{
test: /\.js$/,
// exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: [['env', { targets: { node: '6.10' } }]],
},
},
},
],
},
externals: [nodeExternals()],
stats: {
warningsFilter: [
/(?!require function is used in a way in which dependencies cannot be statically extracted)/,
],
},
};