Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "^3.6.3",
"@docusaurus/preset-classic": "^3.6.3",
"@docusaurus/core": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@mdx-js/react": "^3.1.0",
"dotenv": "^16.4.7",
"prism-react-renderer": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@docusaurus/faster": "^3.6.3",
"@docusaurus/module-type-aliases": "^3.6.3",
"@docusaurus/theme-classic": "^3.6.3",
"@docusaurus/tsconfig": "3.6.3",
"@docusaurus/types": "3.6.3",
"@types/node": "^20.17.10",
"docusaurus-plugin-typedoc": "^1.1.1",
"typedoc": "~0.27.5",
"typedoc-plugin-markdown": "~4.3.3",
"@docusaurus/faster": "^3.7.0",
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/theme-classic": "^3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "3.7.0",
"@types/node": "^20.17.12",
"docusaurus-plugin-typedoc": "^1.2.1",
"typedoc": "~0.27.6",
"typedoc-plugin-markdown": "~4.4.1",
"typescript": "^5.5.3"
},
"browserslist": {
Expand Down
4 changes: 4 additions & 0 deletions docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,7 @@ th {
table th {
color: #767676;
}

.typedoc-sidebar-item-deprecated {
text-decoration: line-through;
}
2 changes: 1 addition & 1 deletion packages/attachments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"scripts": {
"build": "tsc -b",
"build:prod": "tsc -b --sourceMap false",
"clean": "rm -rf lib tsconfig.tsbuildinfo",
"clean": "rm -rf lib tsconfig.tsbuildinfo node_modules",
"watch": "tsc -b -w",
"test": "pnpm build && vitest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"scripts": {
"build": "tsc -b && rollup -c rollup.config.mjs",
"build:prod": "tsc -b --sourceMap false && rollup -c rollup.config.mjs --sourceMap false",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo node_modules",
"test": "vitest"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/powersync-op-sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"build:prod": "bob build",
"typecheck": "tsc",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib"
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib node_modules"
},
"keywords": [
"data sync",
Expand Down Expand Up @@ -133,4 +133,4 @@
"javaPackageName": "com.powersync.opsqlite"
}
}
}
}
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"scripts": {
"build": "tsc -b && rollup -c rollup.config.mjs",
"build:prod": "tsc -b --sourceMap false && rollup -c rollup.config.mjs --sourceMap false",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo dist",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo dist node_modules",
"watch": "tsc -b -w"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"build": "tsc -b",
"build:prod": "tsc -b --sourceMap false",
"clean": "rm -rf lib tsconfig.tsbuildinfo",
"clean": "rm -rf lib tsconfig.tsbuildinfo node_modules",
"test": "vitest",
"watch": "tsc -b -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/tanstack-react-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"build": "tsc -b",
"build:prod": "tsc -b --sourceMap false",
"clean": "rm -rf lib tsconfig.tsbuildinfo",
"clean": "rm -rf lib tsconfig.tsbuildinfo node_modules",
"test": "vitest",
"watch": "tsc -b -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"build": "tsc -b",
"build:prod": "tsc -b --sourceMap false",
"clean": "rm -rf lib tsconfig.tsbuildinfo",
"clean": "rm -rf lib tsconfig.tsbuildinfo node_modules",
"watch": "tsc -b -w",
"test": "vitest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"build:webpack-workers": "webpack --config webpack.workers.config.js",
"build": "pnpm run build:tsc && pnpm run build:webpack-main && pnpm run build:webpack-workers",
"build:prod": "pnpm run build:tsc --sourceMap false && pnpm run build:webpack-main && pnpm run build:webpack-workers",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo node_modules",
"watch": "tsc --build -w",
"test": "pnpm build && vitest"
},
Expand Down
1,629 changes: 946 additions & 683 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading