-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
121 lines (105 loc) · 4.39 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
const fs = require('fs')
const path = require('path')
const restrictNodeStuff = require('webpack-restrict-node-stuff')
const unwrap = require('ts-unwrap')
const utcVersion = require('utc-version')
const webpack = require('webpack')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const WriteWebpackPlugin = require('write-webpack-plugin')
const WextIcons = require('@wext/icons')
const WextManifest = require('@wext/manifest')
const isProduction = (unwrap(process.env.NODE_ENV) === 'production')
const targetBrowser = unwrap(process.env.TARGET_BROWSER)
const API_HOST = (isProduction ? 'https://api.ctrlpanel.io' : 'http://localhost:1834')
const APP_HOST = (isProduction ? 'https://app.ctrlpanel.io' : 'http://localhost:1836')
const AUTO_SUBMIT = (isProduction)
const EXT_ID = (isProduction ? '4b209421-a51b-4556-88f1-a712a978cdd1' : '5ad8f361-be47-444c-b939-b2aa17f11cf2')
const BUNDLE_ID = (isProduction ? 'com.ctrlaltdeseat.ctrlpanel' : 'com.ctrlaltdeseat.ctrlpanel-dev')
const DEVELOPER_ID = '3J63SJ6WJU'
const outputPostfix = (isProduction ? '-prod' : '-dev')
const outputExtension = (targetBrowser === 'safari' ? '.safariextension' : '')
const iconSource = fs.readFileSync(`assets/logo${isProduction ? '' : '-dev'}.svg`)
const actionIcon = WextIcons.action(iconSource, targetBrowser)
const extensionIcon = WextIcons.extension(iconSource, targetBrowser, { shape: 'circle' })
const blackLogo = iconSource.toString().replace(/\$PRIMARY_COLOR/g, 'black')
const currentGitRef = fs.readFileSync(path.join(__dirname, '.git/HEAD')).toString().replace('ref: ', '').trim()
const currentGitSha = fs.readFileSync(path.join(__dirname, '.git', currentGitRef)).toString().trim()
const githubPermaLink = `https://github.com/ctrl-alt-deseat/ctrlpanel-extension/tree/${currentGitSha}`
const manifest = WextManifest[targetBrowser]({
manifest_version: 2,
name: (isProduction ? 'Ctrlpanel' : 'Ctrlpanel DEV'),
version: utcVersion({ apple: (targetBrowser === 'safari') }),
icons: extensionIcon.spec,
applications: {
gecko: { id: `{${EXT_ID}}` },
safari: { id: BUNDLE_ID, developer_id: DEVELOPER_ID, popup_width: 256, popup_height: 83 }
},
author: 'Ctrl Alt Deseat AB',
description: 'One-click sign in for accounts in Ctrlpanel.io',
homepage_url: 'https://www.ctrlpanel.io/',
permissions: (targetBrowser === 'safari' ? [
'<all_urls>'
] : [
'activeTab',
'storage',
`${API_HOST.replace(/:\d+$/, '')}/*`,
`${APP_HOST.replace(/:\d+$/, '')}/*`
]),
background: {
page: 'global.html'
},
browser_action: {
default_title: (isProduction ? 'Ctrlpanel' : 'Ctrlpanel DEV'),
default_popup: 'popup.html',
default_icon: actionIcon.spec
},
content_scripts: [{
matches: [(targetBrowser === 'safari' ? '*://*/*' : `${APP_HOST.replace(/:\d+$/, '')}/*`)],
run_at: 'document_start',
js: ['content.js']
}],
content_security_policy: ((targetBrowser === 'chrome' && isProduction === false) ? `script-src 'self' 'unsafe-eval'; object-src 'self'` : undefined)
})
module.exports = {
mode: (isProduction ? 'production' : 'development'),
entry: {
content: './source/content.ts',
filler: './source/filler.ts',
global: './source/global.ts',
popup: './source/popup.ts'
},
output: {
path: path.join(__dirname, 'distribution', `${targetBrowser}${outputPostfix}${outputExtension}`),
filename: '[name].js'
},
node: restrictNodeStuff(['global']),
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
module: {
rules: [
{ test: /\.tsx?$/, loader: 'ts-loader', options: { compilerOptions: { noEmit: false } } }
]
},
plugins: [
new webpack.DefinePlugin({
'process.env.API_HOST': JSON.stringify(API_HOST),
'process.env.APP_HOST': JSON.stringify(APP_HOST),
'process.env.AUTO_SUBMIT': JSON.stringify(AUTO_SUBMIT),
'process.env.NODE_ENV': JSON.stringify(isProduction ? 'production' : 'development'),
'process.env.TARGET_BROWSER': JSON.stringify(targetBrowser)
}),
new WriteWebpackPlugin([
...extensionIcon.files,
...actionIcon.files,
{ name: 'logo-black.svg', data: Buffer.from(blackLogo) },
{ name: 'SOURCE_URL', data: Buffer.from(githubPermaLink) },
{ name: manifest.name, data: Buffer.from(manifest.content) }
]),
new CopyWebpackPlugin([
{ from: 'spinner.svg', context: 'assets' },
{ from: 'global.html', context: 'views' },
{ from: 'popup.html', context: 'views' }
])
]
}