Skip to content
Open
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
11 changes: 6 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

** Please make sure you read the contribution guide and file the issues in the
Expand All @@ -16,6 +15,7 @@ A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Install '...'
2. Run '....'
3. Open '....'
Expand All @@ -28,9 +28,10 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- TS version/environment:
- ADK version(see maven dependency):

- OS: [e.g. iOS]
- TS version/environment:
- ADK version(see maven dependency):

**Additional context**
Add any other context about the problem here.
Add any other context about the problem here.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Suggest an idea for TypeScript ADK
title: ''
labels: ''
assignees: ''

---

** Please make sure you read the contribution guide and file the issues in the
Expand All @@ -23,4 +22,4 @@ A clear and concise description of any alternative solutions or features you've
considered.

**Additional context**
Add any other context or screenshots about the feature request here.
Add any other context or screenshots about the feature request here.
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
dist/
node_modules/
dev/src/browser

# Generated files: owned by their generators, not Prettier.
package-lock.json
CHANGELOG.md
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"files.insertFinalNewline": true,
"editor.detectIndentation": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnSave": true
}
2 changes: 1 addition & 1 deletion dev/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# @google/adk-devtools

Please see README for adk-js at https://github.com/google/adk-js
Please see README for adk-js at https://github.com/google/adk-js
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"ts:check": "tsc --noEmit",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint --fix \"**/*.ts\"",
"format": "prettier \"**/*.ts\" --write",
"format:check": "prettier \"**/*.ts\" --check",
"format": "prettier \"**/*.{ts,json,md}\" --write",
"format:check": "prettier \"**/*.{ts,json,md}\" --check",
"docs": "npm run docs:clean && npm run docs:generate && npm run docs:serve",
"docs:clean": "rm -rf ./api-reference",
"docs:generate": "typedoc",
Expand Down
Loading