-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
75 lines (71 loc) · 1.89 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
const path = require('path');
const fs = require('fs');
const CopyPlugin = require('copy-webpack-plugin');
const pkg = require('./package.json');
let rootPath;
const isSupported =
process.platform === 'win32' || process.platform === 'darwin';
switch (process.platform) {
case 'win32':
rootPath =
'C:\\Program Files (x86)\\Common Files\\Adobe\\CEP\\extensions';
break;
case 'darwin':
rootPath = '/Library/Application Support/Adobe/CEP/extensions';
break;
default:
break;
}
const config = {
output: {
filename: 'ui.compiled.js',
path: path.resolve(__dirname, 'plugin/lib')
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: [/node_modules/],
use: {
loader: 'babel-loader'
}
}
]
},
node: {
fs: 'empty'
},
plugins: [
new CopyPlugin([
{
from: path.resolve(
__dirname,
'./src/extendscript/Premiere.jsx'
),
to: path.resolve(__dirname, './plugin/jsx/PPRO')
}
])
]
};
if (isSupported) {
const targetPath = path.resolve(`${rootPath}/${pkg.name}`);
fs.stat(targetPath, error => {
if (!error) {
config.plugins.push(
new CopyPlugin([{ from: 'plugin', to: targetPath }])
);
} else {
console.warn(
'\x1b[33m%s\x1b[0m',
`Failed to copy contents of plugin folder to '${targetPath}'. Try running webpack again as an admin, or copy the files yourself.`
);
}
});
} else {
console.warn(
'\x1b[33m%s\x1b[0m',
'Unsupported OS, skipping copying of plugin folder.'
);
}
module.exports = config;