-
Notifications
You must be signed in to change notification settings - Fork 99
/
xclap.ts
104 lines (103 loc) · 3.42 KB
/
xclap.ts
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
/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-var-requires */
import * as fs from 'fs';
import { join } from 'path';
import * as shelljs from 'shelljs';
import waitOn from 'wait-on';
const { load, exec, serial, concurrent } = require('@xarc/run');
const waitForFilesTask =
(...files: string[]) =>
(): Promise<unknown> => {
return waitOn({
delay: 2000,
interval: 3000,
resources: [...files],
verbose: true,
});
};
const nextBuildFolder = join(__dirname, 'dist');
const ffNextBuildFolder = join(nextBuildFolder, 'firefox');
const chromeNextBuildFolder = join(nextBuildFolder, 'chrome');
const filesNeededForNextBuild = [
'manifest.json',
'background.js',
'options.js',
'options.html',
'popup.js',
'popup.html',
'public/js/browser-polyfill.min.js',
'public/css/app.css',
'graphics/wakatime-logo-16.png',
'wakatimeScript.js',
];
const chromeNextBuildFileWaitTask = waitForFilesTask(
nextBuildFolder,
chromeNextBuildFolder,
...filesNeededForNextBuild.map((f) => join(chromeNextBuildFolder, f)),
);
const ffNextBuildFileWaitTask = waitForFilesTask(
nextBuildFolder,
ffNextBuildFolder,
...filesNeededForNextBuild.map((f) => join(ffNextBuildFolder, f)),
);
const makePublicFolder = () => {
if (!fs.existsSync('public/js')) {
if (!fs.existsSync('public')) {
fs.mkdirSync('public');
}
fs.mkdirSync('public/js');
}
};
const copyFromNodeModules = () => {
fs.copyFileSync(
'node_modules/webextension-polyfill/dist/browser-polyfill.min.js',
'public/js/browser-polyfill.min.js',
);
fs.copyFileSync(
'node_modules/webextension-polyfill/dist/browser-polyfill.min.js.map',
'public/js/browser-polyfill.min.js.map',
);
shelljs.cp(
'-Rf',
join(__dirname, 'node_modules/font-awesome/fonts'),
join(__dirname, 'public/fonts/'),
);
};
load({
build: [
serial('postinstall'),
'webpack',
concurrent(
exec(
`web-ext build --artifacts-dir dist/chrome/web-ext-artifacts --source-dir ${chromeNextBuildFolder}`,
),
exec(
`web-ext build --artifacts-dir dist/firefox/web-ext-artifacts --source-dir ${ffNextBuildFolder}`,
),
),
],
'build-sass': exec('sass assets/sass/app.scss public/css/app.css --load-path=node_modules'),
clean: [exec('rimraf public coverage vendor web-ext-artifacts'), 'clean:webpack'],
'clean:webpack': exec('rimraf dist'),
dev: ['clean', 'postinstall', concurrent('watch', 'web-ext:run:firefox', 'web-ext:run:chrome')],
eslint: exec('eslint src . --fix'),
lint: ['prettier', 'eslint'],
postinstall: ['clean', makePublicFolder, copyFromNodeModules, 'build-sass'],
prettier: [exec('prettier --write .')],
'remotedev-server': exec('remotedev --hostname=localhost --port=8000'),
test: ['build', 'lint', 'test-jest'],
'test-jest': [exec('jest --clearCache'), exec('jest --verbose --coverage')],
watch: concurrent('watch-jest', 'webpack:watch'),
'watch-jest': exec('jest --watch'),
'web-ext:run:chrome': [
chromeNextBuildFileWaitTask,
exec('web-ext run -t chromium --source-dir dist/chrome'),
],
'web-ext:run:firefox': [
ffNextBuildFileWaitTask,
exec('web-ext run -t firefox-desktop --source-dir dist/firefox'),
],
webpack: ['clean:webpack', exec('webpack --mode production')],
'webpack:watch': ['clean:webpack', exec('webpack --mode development --watch')],
});