158 Star 1.4K Fork 242

GVPElliott / CopyTranslator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 3.27 KB
一键复制 编辑 原始数据 按行查看 历史
elliottzheng 提交于 2022-12-14 17:08 . fix automation bug on mac
const osType = require("os").type();
const osSpec = {
Windows_NT: { iconName: "icon.ico" },
Darwin: { iconName: "icon.png" },
Linux: { iconName: "icon.png" },
}[osType];
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
const VuetifyLoaderPlugin = require("vuetify-loader/lib/plugin");
const trayIconName = "tray@2x.png";
module.exports = {
transpileDependencies: ["vuetify"],
pluginOptions: {
electronBuilder: {
customFileProtocol: "./",
mainProcessTypeChecking: false,
chainWebpackRendererProcess: (config) => {
// config.when(process.env.NODE_ENV === "production", (config) => {
// config.plugin("analysis").use(new BundleAnalyzerPlugin());
// });
},
chainWebpackMainProcess: (config) => {
// config.when(process.env.NODE_ENV === "production", (config) => {
// config.plugin("analysis").use(new BundleAnalyzerPlugin());
// });
},
builderOptions: {
appId: "com.copytranslator.copytranslator",
publish: {
provider: "github",
owner: "copytranslator",
repo: "copytranslator",
},
asar: true,
extraResources: [
{
from: `dist_locales`,
to: `locales`,
},
{
from: `external_resource`,
to: `external_resource`,
},
{
from: trayIconName,
to: trayIconName,
},
{
from: osSpec.iconName,
to: osSpec.iconName,
},
],
win: {
icon: osSpec.iconName,
target: [
{
target: "nsis",
arch: ["x64"],
},
{
target: "zip",
arch: ["x64"],
},
],
},
linux: {
target: [
{
target: "AppImage",
arch: ["x64"],
},
{
target: "deb",
arch: ["x64"],
},
{
target: "rpm",
arch: ["x64"],
},
],
maintainer: "ziqiang_xu@qq.com",
icon: osSpec.iconName,
category: "Education",
// https://www.electron.build/configuration/linux#debian-package-options
desktop: {
Icon: "/opt/copytranslator/resources/linux-icon/icon.png",
},
},
deb: {
depends: ["libpng16-16"],
},
rpm: {
depends: ["libpng"],
},
mac: {
target: [
{
target: "default",
arch: ["x64"],
},
],
icon: osSpec.iconName,
},
nsis: {
installerIcon: osSpec.iconName,
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
license: "readable_license.txt",
},
},
externals: ["iohook", "shortcut-capture", "active-win","@nut-tree/nut-js"],
// 这一步还蛮重要的,不然就会报错
nodeModulesPath: ["./node_modules"],
},
},
configureWebpack: {
plugins: [new VuetifyLoaderPlugin()],
optimization: {
usedExports: true,
},
},
};
TypeScript
1
https://gitee.com/ylzheng/CopyTranslator.git
git@gitee.com:ylzheng/CopyTranslator.git
ylzheng
CopyTranslator
CopyTranslator
master

搜索帮助