forked from tldraw/tldraw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: clean up local dev tooling (tldraw#856)
* chore: clean up husky + lint-staged * chore: format all files with prettier
- Loading branch information
1 parent
0985a2c
commit 2e36dad
Showing
57 changed files
with
326 additions
and
441 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 |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} | ||
} |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn test | ||
yarn run pre-commit |
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,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn run pre-push |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
"singleQuote": true, | ||
"semi": false, | ||
"printWidth": 100 | ||
} | ||
} |
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 +1 @@ | ||
{"teamId":"team_MjXkk3MAaGtBFaHcssVUiMgd","apiUrl":"https://api.vercel.com"} | ||
{ "teamId": "team_MjXkk3MAaGtBFaHcssVUiMgd", "apiUrl": "https://api.vercel.com" } |
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 |
---|---|---|
|
@@ -76,4 +76,4 @@ | |
"publish": null | ||
}, | ||
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -38,4 +38,4 @@ | |
"typescript": "^4.7.2", | ||
"vite": "^2.9.8" | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -32,4 +32,4 @@ | |
"typescript": "^4.7.3" | ||
}, | ||
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,136 +1,136 @@ | ||
{ | ||
"name": "tldraw-vscode", | ||
"displayName": "tldraw", | ||
"description": "The tldraw Extension for VS Code.", | ||
"version": "1.19.0", | ||
"license": "MIT", | ||
"publisher": "tldraw-org", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tldraw/tldraw" | ||
}, | ||
"engines": { | ||
"vscode": "^1.59.0" | ||
}, | ||
"keywords": [ | ||
"diagram", | ||
"draw", | ||
"drawing", | ||
"sketch", | ||
"design", | ||
"documentation", | ||
"tldraw" | ||
], | ||
"icon": "icon.png", | ||
"galleryBanner": { | ||
"color": "#1d1d1d", | ||
"theme": "dark" | ||
}, | ||
"categories": [ | ||
"Visualization" | ||
], | ||
"activationEvents": [ | ||
"onCustomEditor:tldraw.tldr", | ||
"onCommand:tldraw.tldr.new" | ||
], | ||
"browser": "./dist/web/extension.js", | ||
"main": "./dist/web/extension.js", | ||
"extensionKind": [ | ||
"workspace" | ||
], | ||
"contributes": { | ||
"customEditors": [ | ||
{ | ||
"viewType": "tldraw.tldr", | ||
"displayName": "tldraw", | ||
"selector": [ | ||
{ | ||
"filenamePattern": "*.tldr" | ||
}, | ||
{ | ||
"filenamePattern": "*.tldr.json" | ||
} | ||
] | ||
} | ||
], | ||
"keybindings": [ | ||
{ | ||
"key": "ctrl+shift+d", | ||
"mac": "cmd+shift+d", | ||
"title": "Toggle Dark Mode", | ||
"command": "tldraw.tldr.toggleDarkMode", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+numpad_add", | ||
"mac": "cmd+numpad_add", | ||
"title": "Zoom In", | ||
"command": "tldraw.tldr.zoomIn", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+=", | ||
"mac": "cmd+=", | ||
"title": "Zoom In", | ||
"command": "tldraw.tldr.zoomIn", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+numpad_subtract", | ||
"mac": "cmd+numpad_subtract", | ||
"title": "Zoom Out", | ||
"command": "tldraw.tldr.zoomOut", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+-", | ||
"mac": "cmd+-", | ||
"title": "Zoom Out", | ||
"command": "tldraw.tldr.zoomOut", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+numpad0", | ||
"mac": "cmd+numpad0", | ||
"title": "Reset Zoom", | ||
"command": "tldraw.tldr.resetZoom", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
} | ||
], | ||
"commands": [ | ||
{ | ||
"command": "tldraw.tldr.new", | ||
"title": "New File", | ||
"category": "tldraw" | ||
} | ||
] | ||
}, | ||
"scripts": { | ||
"start:vscode": "node scripts/dev", | ||
"build:apps": "yarn build", | ||
"build": "yarn package", | ||
"web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=.", | ||
"package": "cd ../editor && yarn build && cd ../extension && node scripts/build && node scripts/package", | ||
"publish": "yarn package && vsce publish", | ||
"lint": "eslint src --ext ts" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.10.2", | ||
"@typescript-eslint/parser": "^5.10.2", | ||
"assert": "^2.0.0", | ||
"eslint": "^8.8.0", | ||
"mocha": "^9.1.1", | ||
"process": "^0.11.10", | ||
"ts-loader": "^9.2.5", | ||
"tslib": "^2.4.0", | ||
"typescript": "^4.7.3", | ||
"vsce": "^2.2.0" | ||
}, | ||
"gitHead": "4b1137849ad07da36fc8f0f19cb64e7535a79296" | ||
} | ||
"name": "tldraw-vscode", | ||
"displayName": "tldraw", | ||
"description": "The tldraw Extension for VS Code.", | ||
"version": "1.19.0", | ||
"license": "MIT", | ||
"publisher": "tldraw-org", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tldraw/tldraw" | ||
}, | ||
"engines": { | ||
"vscode": "^1.59.0" | ||
}, | ||
"keywords": [ | ||
"diagram", | ||
"draw", | ||
"drawing", | ||
"sketch", | ||
"design", | ||
"documentation", | ||
"tldraw" | ||
], | ||
"icon": "icon.png", | ||
"galleryBanner": { | ||
"color": "#1d1d1d", | ||
"theme": "dark" | ||
}, | ||
"categories": [ | ||
"Visualization" | ||
], | ||
"activationEvents": [ | ||
"onCustomEditor:tldraw.tldr", | ||
"onCommand:tldraw.tldr.new" | ||
], | ||
"browser": "./dist/web/extension.js", | ||
"main": "./dist/web/extension.js", | ||
"extensionKind": [ | ||
"workspace" | ||
], | ||
"contributes": { | ||
"customEditors": [ | ||
{ | ||
"viewType": "tldraw.tldr", | ||
"displayName": "tldraw", | ||
"selector": [ | ||
{ | ||
"filenamePattern": "*.tldr" | ||
}, | ||
{ | ||
"filenamePattern": "*.tldr.json" | ||
} | ||
] | ||
} | ||
], | ||
"keybindings": [ | ||
{ | ||
"key": "ctrl+shift+d", | ||
"mac": "cmd+shift+d", | ||
"title": "Toggle Dark Mode", | ||
"command": "tldraw.tldr.toggleDarkMode", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+numpad_add", | ||
"mac": "cmd+numpad_add", | ||
"title": "Zoom In", | ||
"command": "tldraw.tldr.zoomIn", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+=", | ||
"mac": "cmd+=", | ||
"title": "Zoom In", | ||
"command": "tldraw.tldr.zoomIn", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+numpad_subtract", | ||
"mac": "cmd+numpad_subtract", | ||
"title": "Zoom Out", | ||
"command": "tldraw.tldr.zoomOut", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+-", | ||
"mac": "cmd+-", | ||
"title": "Zoom Out", | ||
"command": "tldraw.tldr.zoomOut", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
}, | ||
{ | ||
"key": "ctrl+numpad0", | ||
"mac": "cmd+numpad0", | ||
"title": "Reset Zoom", | ||
"command": "tldraw.tldr.resetZoom", | ||
"category": "tldraw", | ||
"when": "resourceExtname == .tldr" | ||
} | ||
], | ||
"commands": [ | ||
{ | ||
"command": "tldraw.tldr.new", | ||
"title": "New File", | ||
"category": "tldraw" | ||
} | ||
] | ||
}, | ||
"scripts": { | ||
"start:vscode": "node scripts/dev", | ||
"build:apps": "yarn build", | ||
"build": "yarn package", | ||
"web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=.", | ||
"package": "cd ../editor && yarn build && cd ../extension && node scripts/build && node scripts/package", | ||
"publish": "yarn package && vsce publish", | ||
"lint": "eslint src --ext ts" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.10.2", | ||
"@typescript-eslint/parser": "^5.10.2", | ||
"assert": "^2.0.0", | ||
"eslint": "^8.8.0", | ||
"mocha": "^9.1.1", | ||
"process": "^0.11.10", | ||
"ts-loader": "^9.2.5", | ||
"tslib": "^2.4.0", | ||
"typescript": "^4.7.3", | ||
"vsce": "^2.2.0" | ||
}, | ||
"gitHead": "4b1137849ad07da36fc8f0f19cb64e7535a79296" | ||
} |
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 |
---|---|---|
|
@@ -47,4 +47,4 @@ | |
"devDependencies": { | ||
"next-transpile-modules": "^9.0.0" | ||
} | ||
} | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -40,4 +40,4 @@ | |
"react-dom": "^18.1.0" | ||
}, | ||
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -32,4 +32,4 @@ | |
"react-dom": "^18.1.0" | ||
}, | ||
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -35,4 +35,4 @@ | |
"react-router-dom": "^6.3.0" | ||
}, | ||
"gitHead": "a7dac0f83ad998e205c2aab58182cb4ba4e099a6" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.