forked from yarnpkg/yarn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-webpack.js
executable file
·82 lines (74 loc) · 1.73 KB
/
build-webpack.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
#!/usr/bin/env node
/* eslint-disable */
const webpack = require('webpack');
const path = require('path');
const util = require('util');
const fs = require('fs');
const version = require('../package.json').version;
const basedir = path.join(__dirname, '../');
const babelRc = JSON.parse(fs.readFileSync(path.join(basedir, '.babelrc'), 'utf8'));
//
// Modern build
//
const compiler = webpack({
// devtool: 'inline-source-map',
entry: [path.join(basedir, 'src/cli/index.js')],
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
}, {
test: /\.json$/,
loader: 'json',
}],
},
plugins: [
new webpack.BannerPlugin({
banner: "#!/usr/bin/env node",
raw: true
})
],
output: {
filename: `yarn-${version}.js`,
path: path.join(basedir, 'artifacts'),
},
target: 'node',
});
compiler.run((err, stats) => {
const {fileDependencies} = stats.compilation;
const filenames = fileDependencies.map(x => x.replace(basedir, ''));
console.log(util.inspect(filenames, {maxArrayLength: null}));
});
//
// Legacy build
//
const compilerLegacy = webpack({
// devtool: 'inline-source-map',
entry: [path.join(basedir, 'src/cli/index.js')],
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: babelRc.env['pre-node5'],
}, {
test: /\.json$/,
loader: 'json',
}],
},
plugins: [
new webpack.BannerPlugin({
banner: "#!/usr/bin/env node",
raw: true
})
],
output: {
filename: `yarn-legacy-${version}.js`,
path: path.join(basedir, 'artifacts'),
},
target: 'node',
});
compilerLegacy.run((err, stats) => {
// do nothing, but keep here for debugging...
});