[READ-ONLY] Mirror of https://github.com/probablykasper/time-machine-inspector. Time Machine backup size inspector app
backup macos tauri time-machine
0

Configure Feed

Select the types of activity you want to include in your feed.

Update actions

Kasper (May 19, 2023, 12:11 AM +0200) 5069591b 79761ab8

+12 -31
+2 -8
.github/workflows/release.yml
··· 7 7 8 8 jobs: 9 9 release: 10 - runs-on: macos-10.15 10 + runs-on: macos-latest 11 11 steps: 12 12 - name: Checkout repository 13 13 uses: actions/checkout@v3 14 14 15 15 - name: Node.js setup 16 - uses: actions/setup-node@v1 16 + uses: actions/setup-node@v3 17 17 with: 18 18 node-version: 18 19 19 20 20 - name: Rust setup 21 21 uses: dtolnay/rust-toolchain@stable 22 - 23 - - name: Install dependencies (Ubuntu only) 24 - if: matrix.platform == 'ubuntu-latest' 25 - run: | 26 - sudo apt-get update 27 - sudo apt-get install -y webkit2gtk-4.0 28 22 29 23 - run: npm install 30 24
+6 -13
.github/workflows/test.yml
··· 8 8 9 9 jobs: 10 10 test: 11 - runs-on: macos-10.15 11 + runs-on: macos-latest 12 12 steps: 13 13 - name: Checkout repository 14 14 uses: actions/checkout@v3 15 15 16 16 - name: Node.js setup 17 - uses: actions/setup-node@v1 17 + uses: actions/setup-node@v3 18 18 with: 19 19 node-version: 18 20 20 ··· 22 22 uses: dtolnay/rust-toolchain@stable 23 23 24 24 - name: Rust Cache 25 - uses: Swatinem/rust-cache@v1 25 + uses: Swatinem/rust-cache@v2 26 26 with: 27 - working-directory: ./src-tauri 27 + workspaces: ./src-tauri 28 28 29 - - name: Install dependencies (Ubuntu only) 30 - if: matrix.platform == 'ubuntu-latest' 31 - run: | 32 - sudo apt-get update 33 - sudo apt-get install -y webkit2gtk-4.0 29 + - run: npm install 34 30 35 - - run: npm install 31 + - run: npm run test 36 32 37 33 - run: npm run build:web 38 34 39 35 - run: npm run lint 40 - if: matrix.platform == 'ubuntu-latest' 41 - 42 - - run: npm run test 43 36 44 37 - name: Build 45 38 uses: tauri-apps/tauri-action@v0
+3 -4
.gitignore
··· 1 1 .DS_Store 2 2 node_modules 3 - build 4 - 5 - src-tauri/target 6 - src-tauri/WixTools 3 + /dist 4 + /src-tauri/target 5 + /src-tauri/WixTools
+1 -1
src-tauri/tauri.conf.json
··· 3 3 "productName": "Time Machine Inspector" 4 4 }, 5 5 "build": { 6 - "distDir": "../build", 6 + "distDir": "../dist", 7 7 "devPath": "http://localhost:3000", 8 8 "beforeDevCommand": "npm run dev:web", 9 9 "beforeBuildCommand": "npm run build:web"
-5
vite.config.js
··· 20 20 plugins: [ 21 21 svelte({ 22 22 preprocess: vitePreprocess(), 23 - experimental: { 24 - inspector: { 25 - holdMode: true, 26 - }, 27 - }, 28 23 }), 29 24 ], 30 25 })