Skip to content

Commit

Permalink
chore: update skeleton files
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Feb 19, 2024
1 parent 273ee77 commit cf6ae70
Show file tree
Hide file tree
Showing 8 changed files with 8,035 additions and 6,203 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ dist
# Nuxt
.nuxt
.output
.data
.vercel_build_output
.build-*
.env
.netlify

# Env
Expand Down
14,199 changes: 8,007 additions & 6,192 deletions package-lock.json

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@
"scule": "^1.0.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.3",
"@nuxt/schema": "^3.5.1",
"@nuxt/test-utils": "^3.5.1",
"@types/node": "^18",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.10.2",
"@nuxt/test-utils": "^3.11.0",
"@types/node": "^20.11.17",
"changelogen": "^0.5.5",
"eslint": "^8.53.0",
"nuxt": "^3.5.1",
"vitest": "^0.33.0"
"eslint": "^8.56.0",
"nuxt": "^3.10.1",
"vitest": "^1.2.2"
}
}
}
1 change: 1 addition & 0 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ export default defineNuxtConfig({
lucide: {
namePrefix: 'Lucide',
},
devtools: { enabled: true },
})
11 changes: 10 additions & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"private": true,
"name": "nuxt-lucide-icons-playground"
"name": "nuxt-lucide-icons-playground",
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate"
},
"dependencies": {
"nuxt": "latest"
}
}
3 changes: 3 additions & 0 deletions playground/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../.nuxt/tsconfig.server.json"
}
3 changes: 3 additions & 0 deletions playground/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "./.nuxt/tsconfig.json"
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "./playground/.nuxt/tsconfig.json"
"extends": "./.nuxt/tsconfig.json"
}

0 comments on commit cf6ae70

Please sign in to comment.