-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathconfig.ts
154 lines (144 loc) · 4.24 KB
/
config.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
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
import OS from 'node:os';
import path from 'node:path';
import { createRequire } from 'node:module';
import type { ForgeConfig } from '@electron-forge/shared-types';
import { MakerSquirrel } from '@electron-forge/maker-squirrel';
import { MakerZIP } from '@electron-forge/maker-zip';
import { MakerDeb } from '@electron-forge/maker-deb';
import { MakerRpm } from '@electron-forge/maker-rpm';
import { AutoUnpackNativesPlugin } from '@electron-forge/plugin-auto-unpack-natives';
import { WebpackPlugin } from '@electron-forge/plugin-webpack';
import { type Configuration, type ModuleOptions, type DefinePlugin } from 'webpack';
import * as dotenv from 'dotenv';
import type IForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import type ICopyPlugin from 'copy-webpack-plugin';
dotenv.config({path: '.env.local'});
const ForkTsCheckerWebpackPlugin: typeof IForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const CopyPlugin: typeof ICopyPlugin = require('copy-webpack-plugin');
const DefinePluginImpl: typeof DefinePlugin = require('webpack').DefinePlugin;
const webpackPlugins = [
new ForkTsCheckerWebpackPlugin({
//logger: 'webpack-infrastructure'
})
];
const defaultWebpackRules: () => Required<ModuleOptions>['rules'] = () => {
return [
// Add support for native node modules
{
// We're specifying native_modules in the test because the asset relocator loader generates a
// "fake" .node file which is really a cjs file.
test: /native_modules[/\\].+\.node$/,
use: 'node-loader'
},
{
test: /[/\\]node_modules[/\\].+\.(m?js|node)$/,
parser: { amd: false },
use: {
loader: '@vercel/webpack-asset-relocator-loader',
options: {
outputAssetBase: 'native_modules'
}
}
},
{
test: /\.tsx?$/,
exclude: /(node_modules|\.webpack)/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true
}
}
}
];
};
const platform = OS.platform();
let extensionPath: string;
if (platform === 'win32') {
extensionPath = 'powersync.dll';
} else if (platform === 'linux') {
extensionPath = 'libpowersync.so';
} else if (platform === 'darwin') {
extensionPath = 'libpowersync.dylib';
} else {
throw 'Unknown platform, PowerSync for Node.js currently supports Windows, Linux and macOS.';
}
const mainConfig: Configuration = {
/**
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: './src/main/index.ts',
// Put your normal webpack config below here
module: {
rules: defaultWebpackRules(),
},
plugins: [
...webpackPlugins,
new CopyPlugin({
patterns: [{
from: path.resolve(require.resolve('@powersync/node/package.json'), `../lib/${extensionPath}`),
to: path.join('powersync', extensionPath),
}],
}),
new DefinePluginImpl({
POWERSYNC_URL: JSON.stringify(process.env.POWERSYNC_URL),
POWERSYNC_TOKEN: JSON.stringify(process.env.POWERSYNC_TOKEN),
}),
],
resolve: {
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css', '.json']
},
target: "electron-main",
};
const rendererConfig: Configuration = {
module: {
rules: [
...defaultWebpackRules(),
{
test: /\.css$/,
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }]
}
],
},
plugins: webpackPlugins,
resolve: {
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css']
}
};
const config: ForgeConfig = {
packagerConfig: {
asar: {
unpack: '**/{.**,**}/**/powersync/*'
},
},
rebuildConfig: {
force: true,
},
makers: [
new MakerSquirrel(),
new MakerZIP({}, ['darwin']),
new MakerRpm({ options: { icon: './public/icons/icon' } }),
new MakerDeb({ options: { icon: './public/icons/icon' } })
],
plugins: [
new AutoUnpackNativesPlugin({}),
new WebpackPlugin({
mainConfig,
renderer: {
config: rendererConfig,
entryPoints: [
{
name: 'main_window',
html: './src/render/index.html',
js: './src/render/main.ts',
preload: {
js: './src/render/preload.ts',
}
}
]
}
})
]
};
export default config;