mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2026-01-30 23:32:49 -05:00
dumb
This commit is contained in:
@@ -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')
|
||||||
|
|||||||
@@ -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')
|
||||||
|
|||||||
@@ -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')
|
||||||
|
|||||||
@@ -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')
|
||||||
|
|||||||
Reference in New Issue
Block a user