set version at build time
This commit is contained in:
parent
68e6b4550c
commit
3c3c09a523
3 changed files with 7 additions and 2 deletions
|
@ -6,12 +6,17 @@ import { MakerRpm } from '@electron-forge/maker-rpm'
|
||||||
import { PublisherGithub } from '@electron-forge/publisher-github'
|
import { PublisherGithub } from '@electron-forge/publisher-github'
|
||||||
import { AutoUnpackNativesPlugin } from '@electron-forge/plugin-auto-unpack-natives'
|
import { AutoUnpackNativesPlugin } from '@electron-forge/plugin-auto-unpack-natives'
|
||||||
import { WebpackPlugin } from '@electron-forge/plugin-webpack'
|
import { WebpackPlugin } from '@electron-forge/plugin-webpack'
|
||||||
|
import * as path from 'path'
|
||||||
|
import * as fs from 'fs'
|
||||||
|
|
||||||
import { mainConfig } from './webpack.main.config'
|
import { mainConfig } from './webpack.main.config'
|
||||||
import { rendererConfig } from './webpack.renderer.config'
|
import { rendererConfig } from './webpack.renderer.config'
|
||||||
|
|
||||||
|
const packageJson = JSON.parse(fs.readFileSync(path.resolve(__dirname, './package.json'), 'utf8'))
|
||||||
|
|
||||||
const config: ForgeConfig = {
|
const config: ForgeConfig = {
|
||||||
packagerConfig: {
|
packagerConfig: {
|
||||||
|
appVersion: process.env.VERSION || packageJson.version,
|
||||||
asar: true,
|
asar: true,
|
||||||
icon: './images/icon',
|
icon: './images/icon',
|
||||||
extraResource: ['../ollama', '../ggml-metal.metal'],
|
extraResource: ['../ollama', '../ggml-metal.metal'],
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "ollama",
|
"name": "ollama",
|
||||||
"productName": "Ollama",
|
"productName": "Ollama",
|
||||||
"version": "0.0.2",
|
"version": "0.0.0",
|
||||||
"description": "ollama",
|
"description": "ollama",
|
||||||
"main": ".webpack/main",
|
"main": ".webpack/main",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "web",
|
"name": "web",
|
||||||
"version": "0.1.0",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
|
|
Loading…
Reference in a new issue