Skip to content

Commit

Permalink
chore: update dependencies (#356)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* revert typescript update

* finish typescript upgrade

---------

Co-authored-by: AdrianGonz97 <31664583+AdrianGonz97@users.noreply.github.com>
  • Loading branch information
manuel3108 and AdrianGonz97 authored Dec 23, 2024
1 parent 003fa1a commit bc7dcb6
Show file tree
Hide file tree
Showing 16 changed files with 746 additions and 821 deletions.
6 changes: 6 additions & 0 deletions .changeset/stale-ties-move.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'svelte-migrate': patch
'sv': patch
---

chore: update-dependencies
4 changes: 2 additions & 2 deletions community-addon-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"@sveltejs/cli-core": "workspace:*"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@playwright/test": "^1.49.1",
"sv": "workspace:*",
"vitest": "^2.1.4"
"vitest": "^2.1.8"
},
"keywords": [
"svelte-add-on",
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@
"update-addon-deps": "node ./scripts/update-addon-dependencies.js"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@playwright/test": "^1.48.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@changesets/cli": "^2.27.10",
"@playwright/test": "^1.49.1",
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@sveltejs/create": "workspace:*",
"@sveltejs/eslint-config": "^8.1.0",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^22.3.0",
"@vitest/ui": "^2.1.4",
"eslint": "^9.10.0",
"magic-string": "^0.30.11",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-svelte": "^3.2.6",
"rollup": "^4.22.4",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/node": "^22.10.2",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"magic-string": "^0.30.15",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-svelte": "^3.3.2",
"rollup": "^4.28.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"sv": "workspace:*",
"svelte": "^5.0.0",
"svelte": "^5.12.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"typescript-eslint": "^8.18.0",
"unplugin-isolated-decl": "^0.8.3",
"vitest": "^2.1.4"
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.7.0"
}
6 changes: 3 additions & 3 deletions packages/ast-tooling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
}
},
"devDependencies": {
"@babel/parser": "^7.24.7",
"@babel/parser": "^7.26.3",
"ast-types": "^0.16.1",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"htmlparser2": "^9.1.0",
"postcss": "^8.4.38",
"recast": "^0.23.7",
"postcss": "^8.4.49",
"recast": "^0.23.9",
"silver-fleece": "^1.2.1",
"zimmerframe": "^1.1.2"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/clack-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"./package.json": "./package.json"
},
"devDependencies": {
"picocolors": "^1.1.0",
"picocolors": "^1.1.1",
"sisteransi": "^1.0.5",
"wrap-ansi": "^8.1.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/clack-prompts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"devDependencies": {
"@sveltejs/clack-core": "workspace:*",
"is-unicode-supported": "^1.3.0",
"picocolors": "^1.1.0",
"picocolors": "^1.1.1",
"sisteransi": "^1.0.5"
}
}
2 changes: 1 addition & 1 deletion packages/cli/bin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

import pkg from './package.json';
import pkg from './package.json' with { type: 'json' };
import { program } from 'commander';
import { add } from './commands/add/index.ts';
import { create } from './commands/create.ts';
Expand Down
10 changes: 10 additions & 0 deletions packages/cli/lib/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"checkJs": false,
"isolatedDeclarations": true,
"declaration": true
},
// we'll only want to enforce `isolatedDeclarations` on the library portion of the CLI
"include": ["index.ts", "testing.ts"]
}
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"degit": "^2.8.4",
"empathic": "^1.0.0",
"package-manager-detector": "^0.2.7",
"picocolors": "^1.1.0",
"picocolors": "^1.1.1",
"ps-tree": "^1.2.0",
"tar-fs": "^3.0.6",
"tinyexec": "^0.3.1",
Expand Down
8 changes: 1 addition & 7 deletions packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"checkJs": false,
"isolatedDeclarations": true,
"declaration": true
},
// we'll only want to enforce `isolatedDeclarations` on the library portion of the CLI
"include": ["lib/index.ts", "lib/testing.ts"]
"include": ["bin.ts"]
}
2 changes: 1 addition & 1 deletion packages/cli/utils/common.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pc from 'picocolors';
import pkg from '../package.json';
import pkg from '../package.json' with { type: 'json' };
import * as p from '@sveltejs/clack-prompts';
import type { Argument, HelpConfiguration, Option } from 'commander';
import { UnsupportedError } from './errors.ts';
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
"@sveltejs/clack-prompts": "workspace:*",
"decircular": "^1.0.0",
"dedent": "^1.5.3",
"magic-string": "^0.30.12",
"picocolors": "^1.1.0"
"magic-string": "^0.30.15",
"picocolors": "^1.1.1"
},
"keywords": [
"create",
Expand Down
2 changes: 1 addition & 1 deletion packages/create/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"devDependencies": {
"@types/gitignore-parser": "^0.0.3",
"gitignore-parser": "^0.0.2",
"sucrase": "^3.34.0",
"sucrase": "^3.35.0",
"tiny-glob": "^0.2.9"
},
"keywords": [
Expand Down
12 changes: 6 additions & 6 deletions packages/migrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@
"dependencies": {
"import-meta-resolve": "^4.1.0",
"kleur": "^4.1.5",
"magic-string": "^0.30.5",
"magic-string": "^0.30.15",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"semver": "^7.6.3",
"tiny-glob": "^0.2.9",
"ts-morph": "^24.0.0",
"typescript": "^5.3.3",
"typescript": "^5.7.2",
"zimmerframe": "^1.1.2"
},
"devDependencies": {
"@types/node": "^18.19.48",
"@types/node": "^18.19.68",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"svelte": "^4.2.10"
"@types/semver": "^7.5.8",
"svelte": "^4.2.19"
},
"keywords": [
"migration",
Expand Down
Loading

0 comments on commit bc7dcb6

Please sign in to comment.