This commit is contained in:
Tickbase
2025-05-18 21:13:06 +02:00
parent e633524465
commit 3f5e1c3fd7
4 changed files with 9 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
const fs = require('fs') import fs from 'node:fs'
const path = require('path') import path from 'node:path'
const { execSync } = require('child_process') import { execSync } from 'node:child_process'
// Define paths // Define paths
const rustFilesPath = path.join(__dirname, '..', 'src-tauri') const rustFilesPath = path.join(__dirname, '..', 'src-tauri')

View File

@@ -1,6 +1,5 @@
const fs = require('fs') import fs from 'node:fs'
const path = require('path') import path from 'node:path'
const { execSync } = require('child_process')
// Read the current version from package.json // Read the current version from package.json
const packageJson = require('../package.json') const packageJson = require('../package.json')

View File

@@ -1,5 +1,5 @@
const fs = require('fs') import fs from 'node:fs'
const path = require('path') import path from 'node:path'
// Read current version from package.json // Read current version from package.json
const packageJsonPath = path.join(__dirname, '..', 'package.json') const packageJsonPath = path.join(__dirname, '..', 'package.json')

View File

@@ -1,5 +1,5 @@
const fs = require('fs') import fs from 'node:fs'
const path = require('path') import path from 'node:path'
// Path to your tauri.conf.json file // Path to your tauri.conf.json file
const tauriConfigPath = path.join(__dirname, '..', 'src-tauri', 'tauri.conf.json') const tauriConfigPath = path.join(__dirname, '..', 'src-tauri', 'tauri.conf.json')