-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
403 lines (372 loc) · 11.1 KB
/
webpack.config.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/* eslint-disable no-undef */
// -----------------------------------------------------------------------------
// This file is used to build the plugin file (.jpl) and plugin info (.json). It
// is recommended not to edit this file as it would be overwritten when updating
// the plugin framework. If you do make some changes, consider using an external
// JS file and requiring it here to minimize the changes. That way when you
// update, you can easily restore the functionality you've added.
// -----------------------------------------------------------------------------
const path = require('path');
const crypto = require('crypto');
const fs = require('fs-extra');
const chalk = require('chalk');
const CopyPlugin = require('copy-webpack-plugin');
const tar = require('tar');
const glob = require('glob');
const execSync = require('child_process').execSync;
const webpack = require('webpack'); //to access built-in plugins
const { ModuleFilenameHelpers } = require('webpack');
const rootDir = path.resolve(__dirname);
const userConfigFilename = './plugin.config.json';
const userConfigPath = path.resolve(rootDir, userConfigFilename);
const distDir = path.resolve(rootDir, 'dist');
const srcDir = path.resolve(rootDir, 'src');
const publishDir = path.resolve(rootDir, 'publish');
const userConfig = Object.assign(
{},
{
extraScripts: []
},
fs.pathExistsSync(userConfigPath) ? require(userConfigFilename) : {}
);
const manifestPath = `${srcDir}/manifest.json`;
const packageJsonPath = `${rootDir}/package.json`;
const manifest = readManifest(manifestPath);
const pluginArchiveFilePath = path.resolve(publishDir, `${manifest.id}.jpl`);
const pluginInfoFilePath = path.resolve(publishDir, `${manifest.id}.json`);
function validatePackageJson() {
const content = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
if (!content.name || content.name.indexOf('joplin-plugin-') !== 0) {
console.warn(
chalk.yellow(
`WARNING: To publish the plugin, the package name should start with "joplin-plugin-" (found "${content.name}") in ${packageJsonPath}`
)
);
}
if (!content.keywords || content.keywords.indexOf('joplin-plugin') < 0) {
console.warn(
chalk.yellow(
`WARNING: To publish the plugin, the package keywords should include "joplin-plugin" (found "${JSON.stringify(
content.keywords
)}") in ${packageJsonPath}`
)
);
}
if (content.scripts && content.scripts.postinstall) {
console.warn(
chalk.yellow(
`WARNING: package.json contains a "postinstall" script. It is recommended to use a "prepare" script instead so that it is executed before publish. In ${packageJsonPath}`
)
);
}
}
function fileSha256(filePath) {
const content = fs.readFileSync(filePath);
return crypto.createHash('sha256').update(content).digest('hex');
}
function currentGitInfo() {
try {
let branch = execSync('git rev-parse --abbrev-ref HEAD', { stdio: 'pipe' })
.toString()
.trim();
const commit = execSync('git rev-parse HEAD', { stdio: 'pipe' })
.toString()
.trim();
if (branch === 'HEAD') branch = 'master';
return `${branch}:${commit}`;
} catch (error) {
const messages = error.message ? error.message.split('\n') : [''];
console.info(
chalk.cyan(
'Could not get git commit (not a git repo?):',
messages[0].trim()
)
);
console.info(
chalk.cyan('Git information will not be stored in plugin info file')
);
return '';
}
}
function readManifest(manifestPath) {
const content = fs.readFileSync(manifestPath, 'utf8');
const output = JSON.parse(content);
if (!output.id)
throw new Error(`Manifest plugin ID is not set in ${manifestPath}`);
return output;
}
function createPluginArchive(sourceDir, destPath) {
const cleanSource = sourceDir.replaceAll('\\', '/');
const distFiles = glob
.sync(`${cleanSource}/**/*`, { nodir: true })
.map((f) => f.substr(cleanSource.length + 1));
if (!distFiles.length)
throw new Error(
'Plugin archive was not created because the "dist" directory is empty'
);
fs.removeSync(destPath);
tar.create(
{
strict: true,
portable: true,
file: destPath,
filter: (path) => tarFilter(path),
cwd: sourceDir,
sync: true
},
distFiles
);
console.info(chalk.cyan(`Plugin archive has been created in ${destPath}`));
}
const ignoreFilesForPluginArchive = [
'bump-plugin-version.d.ts',
'emptyContentScript.d.ts',
'jest.config.d.ts',
'webpack.config.d.ts'
];
function tarFilter(path) {
if (ignoreFilesForPluginArchive.includes(path)) {
console.warn(`Path ${path} will be ignored!`);
return false;
}
return true;
}
function createPluginInfo(manifestPath, destPath, jplFilePath) {
const contentText = fs.readFileSync(manifestPath, 'utf8');
const content = JSON.parse(contentText);
content._publish_hash = `sha256:${fileSha256(jplFilePath)}`;
content._publish_commit = currentGitInfo();
fs.writeFileSync(destPath, JSON.stringify(content, null, '\t'), 'utf8');
}
class OnBuildCompletedPlugin {
static defaultOptions = {
defaultOnDoneCallback: null
};
constructor(options = {}) {
this.defaultOnDoneCallback = options.callback;
this.options = { options };
}
apply(compiler) {
compiler.hooks.done.tapAsync(
'OnBuildCompletedPlugin',
(compilation, callback) => {
console.log('Prepare Joplin Plugin files!');
this.defaultOnDoneCallback();
callback();
}
);
}
}
class CleanUpBefore {
static defaultOptions = {
defaultOnDoneCallback: null
};
constructor(options = {}) {
this.defaultOnDoneCallback = options.callback;
this.options = { options };
}
apply(compiler) {
compiler.hooks.beforeRun.tapAsync(
'CleanUpBefore',
(compilation, callback) => {
console.log('Clean Up Before!');
this.defaultOnDoneCallback();
callback();
}
);
}
}
function onBeforeBuild() {
try {
fs.removeSync(distDir);
fs.removeSync(path.resolve(distDir, '__tests__'));
fs.removeSync(publishDir);
fs.mkdirpSync(publishDir);
console.info(chalk.cyan('Build output cleanup'));
} catch (error) {
console.error(chalk.red(error.message));
}
}
function onBuildCompleted() {
try {
fs.removeSync(path.resolve(publishDir, 'index.js'));
fs.removeSync(path.resolve(distDir, '__tests__'));
fs.removeSync(path.resolve(distDir, 'coverage'));
fs.removeSync(path.resolve(publishDir, '__tests__'));
fs.removeSync(path.resolve(publishDir, 'coverage'));
createPluginArchive(distDir, pluginArchiveFilePath);
createPluginInfo(manifestPath, pluginInfoFilePath, pluginArchiveFilePath);
validatePackageJson();
console.info(chalk.cyan('Create Joplin Plugin files.'));
} catch (error) {
console.error(chalk.red(error.message));
}
}
const baseConfig = {
mode: 'production',
target: 'node',
stats: 'errors-only',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
}
};
const pluginConfig = Object.assign({}, baseConfig, {
entry: './src/index.ts',
name: 'pluginConfig',
resolve: {
alias: {
api: path.resolve(__dirname, 'api'),
canvas: false
},
fallback: {
assert: require.resolve('assert'),
buffer: require.resolve('buffer'),
http: require.resolve('stream-http'),
https: require.resolve('https-browserify'),
stream: require.resolve('stream-browserify'),
url: require.resolve('url'),
zlib: require.resolve('browserify-zlib')
},
// JSON files can also be required from scripts so we include this.
// https://github.com/joplin/plugin-bibtex/pull/2
extensions: ['.tsx', '.ts', '.js', '.json']
},
output: {
filename: 'index.js',
path: distDir
},
plugins: [
new CleanUpBefore({
callback: onBeforeBuild
}),
new CopyPlugin({
patterns: [
{
from: '**/*',
context: path.resolve(__dirname, 'src'),
to: path.resolve(__dirname, 'dist'),
globOptions: {
ignore: [
// All TypeScript files are compiled to JS and
// already copied into /dist so we don't copy them.
'**/*.ts',
'**/*.tsx',
'**/__tests__/*',
'**/coverage/*'
]
}
}
]
})
]
});
const extraScriptConfig = Object.assign({}, baseConfig, {
name: 'attachContentScripts',
resolve: {
alias: {
api: path.resolve(__dirname, 'api')
},
extensions: ['.tsx', '.ts', '.js', '.json']
}
});
const emptyContentScript = Object.assign({}, baseConfig, {
name: 'attachContentScripts',
entry: './emptyContentScript.ts',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
alias: {
api: path.resolve(__dirname, 'api')
},
extensions: ['.tsx', '.ts', '.js', '.json']
}
});
const createArchiveConfig = {
stats: 'errors-only',
name: 'createArchiveConfig',
entry: './dist/index.js',
resolve: {
alias: {
canvas: false
},
fallback: {
assert: require.resolve('assert'),
buffer: require.resolve('buffer'),
http: require.resolve('stream-http'),
https: require.resolve('https-browserify'),
stream: require.resolve('stream-browserify'),
url: require.resolve('url'),
zlib: require.resolve('browserify-zlib'),
os: require.resolve('os-browserify/browser'),
path: require.resolve('path-browserify'),
constants: require.resolve('constants-browserify'),
crypto: require.resolve('crypto-browserify'),
fs: false
},
// JSON files can also be required from scripts so we include this.
// https://github.com/joplin/plugin-bibtex/pull/2
extensions: ['.tsx', '.ts', '.js', '.json']
},
output: {
filename: 'index.js',
path: publishDir
},
plugins: [
new OnBuildCompletedPlugin({
callback: onBuildCompleted
})
]
};
function buildWebpackConfiguration(extraScripts) {
const entriesForEntry = {};
for (const name of extraScripts) {
const relativePath = `./src/${name}`;
const fullPath = path.resolve(`${rootDir}/${relativePath}`);
if (!fs.pathExistsSync(fullPath))
throw new Error(
`Could not find extra script: "${name}" at "${fullPath}"`
);
const s = name.split('.');
s.pop();
const nameNoExt = s.join('.');
entriesForEntry[nameNoExt] = relativePath;
}
return {
entry: entriesForEntry,
output: {
path: distDir,
library: 'default',
libraryTarget: 'commonjs',
libraryExport: 'default'
}
};
}
function buildExtraScriptConfigs(userConfig) {
if (!userConfig.extraScripts.length) return [emptyContentScript];
const output = [];
console.log('Add extra script and config.');
const scriptPaths = buildWebpackConfiguration(userConfig.extraScripts);
output.push(
Object.assign({}, extraScriptConfig, {
entry: scriptPaths.entry,
output: scriptPaths.output
})
);
return output;
}
module.exports = [createArchiveConfig, pluginConfig].concat(
buildExtraScriptConfigs(userConfig)
);