Skip to content

Commit

Permalink
Nuxtor v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolaSpadari committed Aug 4, 2024
2 parents 6e9fd2c + 92851bb commit 91e0e75
Show file tree
Hide file tree
Showing 20 changed files with 4,082 additions and 4,089 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
fail-fast: false
matrix:
include:
- platform: macos-latest # for Arm based macs.
- platform: macos-latest # Arm based macs
args: --target aarch64-apple-darwin
- platform: macos-latest # for Intel based macs.
- platform: macos-latest # Intel based macs
args: --target x86_64-apple-darwin
- platform: ubuntu-22.04
args: ""
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
version: 9.6.0

- name: install frontend dependencies
run: pnpm install
Expand All @@ -57,7 +57,7 @@ jobs:
with:
tagName: nuxtor-v__VERSION__
releaseName: Nuxtor v__VERSION__
releaseBody: After installing the Apple app you have to run "xattr -c /Applications/nuxtor.app" once before launching
releaseBody: After installing the Apple app you have to run "xattr -c /Applications/Nuxtor.app" once before launching
releaseDraft: false
prerelease: false
args: ${{ matrix.args }}
9 changes: 3 additions & 6 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export default defineNuxtConfig({
modules: [
"@vueuse/nuxt",
"@unocss/nuxt",
"@nuxt/icon",
"nuxt-svgo",
"@nuxt/eslint"
],
Expand Down Expand Up @@ -50,11 +51,6 @@ export default defineNuxtConfig({
}
}
},
vue: {
compilerOptions: {
isCustomElement: (tag: string) => tag.startsWith("i-")
}
},
srcDir: "src/",
ssr: false,
devServer: {
Expand All @@ -64,5 +60,6 @@ export default defineNuxtConfig({
config: {
standalone: false
}
}
},
compatibilityDate: "2024-08-01"
});
39 changes: 19 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "nuxtor",
"type": "module",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"packageManager": "pnpm@9.4.0",
"description": "Starter template for Nuxt 3 with Tauri",
"packageManager": "pnpm@9.6.0",
"description": "Starter template for Nuxt 3 and Tauri 2",
"author": "Nicola Spadari",
"license": "MIT",
"engines": {
Expand All @@ -23,27 +23,26 @@
"tauri:build:debug": "tauri build --debug"
},
"dependencies": {
"@tauri-apps/api": ">=2.0.0-beta.14",
"@tauri-apps/plugin-fs": "2.0.0-beta.6",
"@tauri-apps/plugin-notification": "2.0.0-beta.6",
"@tauri-apps/plugin-os": "2.0.0-beta.6",
"@tauri-apps/plugin-shell": "2.0.0-beta.7"
"@tauri-apps/api": ">=2.0.0-rc.0",
"@tauri-apps/plugin-fs": "^2.0.0-rc.0",
"@tauri-apps/plugin-notification": "^2.0.0-rc.0",
"@tauri-apps/plugin-os": "^2.0.0-rc.0",
"@tauri-apps/plugin-shell": "^2.0.0-rc.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.2",
"@iconify-json/heroicons-solid": "^1.1.11",
"@nuxt/eslint": "^0.3.13",
"@tauri-apps/cli": ">=2.0.0-beta.21",
"@unocss/eslint-plugin": "^0.61.0",
"@unocss/nuxt": "^0.61.0",
"@antfu/eslint-config": "^2.24.1",
"@nuxt/eslint": "^0.4.0",
"@nuxt/icon": "^1.4.5",
"@tauri-apps/cli": ">=2.0.0-rc.1",
"@unocss/eslint-plugin": "^0.61.9",
"@unocss/nuxt": "^0.61.9",
"@vueuse/core": "^10.11.0",
"@vueuse/nuxt": "^10.11.0",
"bumpp": "^9.4.1",
"bumpp": "^9.4.2",
"eslint": "8.57.0",
"nuxt": "^3.12.3",
"nuxt-svgo": "^4.0.1",
"sass": "^1.77.6",
"typescript": "^5.5.3",
"unplugin-auto-import": "^0.17.6"
"nuxt": "^3.12.4",
"nuxt-svgo": "^4.0.2",
"sass": "^1.77.8",
"typescript": "^5.5.4"
}
}
Loading

0 comments on commit 91e0e75

Please sign in to comment.