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
2 changes: 1 addition & 1 deletion docs/docs/_prerequisites.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Prerequisites

- [Node.js](https://nodejs.org) v22+ environment with `npm`
- Databricks CLI (v0.286.0 or higher): install and configure it according to the [official tutorial](https://docs.databricks.com/aws/en/dev-tools/cli/tutorial).
- Databricks CLI (v0.287.0 or higher): install and configure it according to the [official tutorial](https://docs.databricks.com/aws/en/dev-tools/cli/tutorial).
2 changes: 1 addition & 1 deletion docs/docs/development/_prerequisites_app.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Prerequisites

- [Node.js](https://nodejs.org) v22+ environment with `npm`
- Databricks CLI (v0.286.0 or higher): install and configure it according to the [official tutorial](https://docs.databricks.com/aws/en/dev-tools/cli/tutorial).
- Databricks CLI (v0.287.0 or higher): install and configure it according to the [official tutorial](https://docs.databricks.com/aws/en/dev-tools/cli/tutorial).
- A new Databricks app with AppKit installed. See [Bootstrap a new Databricks app](../index.md) for more details.
34 changes: 22 additions & 12 deletions template/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@
"typecheck": "tsc -p ./tsconfig.server.json --noEmit && tsc -p ./tsconfig.client.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ast-grep": "appkit-lint",
"lint:ast-grep": "appkit lint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest run && npm run test:smoke",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:smoke": "playwright install chromium && playwright test tests/smoke.spec.ts",
"clean": "rm -rf client/dist dist build node_modules .smoke-test test-results playwright-report",
"typegen": "appkit-generate-types",
"setup": "appkit-setup --write"
"typegen": "appkit generate-types",
"setup": "appkit setup --write"
},
"keywords": [],
"author": "",
"license": "Unlicensed",
"description": "{{.app_description}}",
"dependencies": {
"@databricks/appkit": "0.3.0",
"@databricks/appkit-ui": "0.3.0",
"@databricks/appkit": "0.5.2",
"@databricks/appkit-ui": "0.5.2",
"@databricks/sdk-experimental": "^0.14.2",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
Expand Down