-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Use svelte version from prompt options for
layerchart
template
- Loading branch information
Showing
2 changed files
with
50 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'create-svelte-ux': patch | ||
--- | ||
|
||
fix: Use svelte version from prompt options for `layerchart` template |
90 changes: 45 additions & 45 deletions
90
packages/create-svelte-ux/templates/layerchart/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
{ | ||
"name": "PROJECT_NAME", | ||
"version": "0.0.1", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"test": "npm run test:integration && npm run test:unit", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --plugin-search-dir . --check . && eslint .", | ||
"format": "prettier --plugin-search-dir . --write .", | ||
"test:integration": "playwright test", | ||
"test:unit": "vitest" | ||
}, | ||
"devDependencies": { | ||
"@mdi/js": "^7.3.67", | ||
"@playwright/test": "^1.28.1", | ||
"@sveltejs/adapter-auto": "^3.0.0", | ||
"@sveltejs/kit": "^2.0.0", | ||
"@sveltejs/vite-plugin-svelte": "^3.0.0", | ||
"@typescript-eslint/eslint-plugin": "^8.0.0", | ||
"@typescript-eslint/parser": "^8.0.0", | ||
"autoprefixer": "^10.4.14", | ||
"eslint": "^9.0.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-svelte": "^2.30.0", | ||
"postcss": "^8.4.24", | ||
"postcss-load-config": "^6.0.0", | ||
"prettier": "^3.0.0", | ||
"prettier-plugin-svelte": "^3.0.0", | ||
"svelte": "^4.0.5", | ||
"svelte-check": "^4.0.0", | ||
"svelte-ux": "latest", | ||
"tailwindcss": "^3.3.2", | ||
"tslib": "^2.4.1", | ||
"typescript": "^5.0.0", | ||
"vite": "^5.0.0", | ||
"vitest": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"dotenv": "16.4.2", | ||
"layerchart": "latest" | ||
} | ||
"name": "PROJECT_NAME", | ||
"version": "0.0.1", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite dev", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"test": "npm run test:integration && npm run test:unit", | ||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", | ||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", | ||
"lint": "prettier --plugin-search-dir . --check . && eslint .", | ||
"format": "prettier --plugin-search-dir . --write .", | ||
"test:integration": "playwright test", | ||
"test:unit": "vitest" | ||
}, | ||
"devDependencies": { | ||
"@mdi/js": "^7.3.67", | ||
"@playwright/test": "^1.28.1", | ||
"@sveltejs/adapter-auto": "^3.0.0", | ||
"@sveltejs/kit": "^2.0.0", | ||
"@sveltejs/vite-plugin-svelte": "^3.0.0", | ||
"@typescript-eslint/eslint-plugin": "^8.0.0", | ||
"@typescript-eslint/parser": "^8.0.0", | ||
"autoprefixer": "^10.4.14", | ||
"eslint": "^9.0.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-svelte": "^2.30.0", | ||
"postcss": "^8.4.24", | ||
"postcss-load-config": "^6.0.0", | ||
"prettier": "^3.0.0", | ||
"prettier-plugin-svelte": "^3.0.0", | ||
"svelte": "SVELTE_VERSION", | ||
"svelte-check": "^4.0.0", | ||
"svelte-ux": "latest", | ||
"tailwindcss": "^3.3.2", | ||
"tslib": "^2.4.1", | ||
"typescript": "^5.0.0", | ||
"vite": "^5.0.0", | ||
"vitest": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"dotenv": "16.4.2", | ||
"layerchart": "latest" | ||
} | ||
} |