Skip to content

Commit 381ad75

Browse files
committed
Fix devcontainer TS issue, disable telemetry
1 parent 841e406 commit 381ad75

File tree

6 files changed

+8
-2
lines changed

6 files changed

+8
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"vscode": {
2424
// These are the extensions that are included in VS Code for the container
2525
"extensions": [
26+
"arcanis.vscode-zipfs",
2627
"vitest.explorer",
2728
"Vue.volar"
2829
]

.devcontainer/init_container.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@
66
sudo apt update -y
77

88
# allow ** globs in bash
9-
shopt -s globstar
9+
shopt -s globstar
10+
11+
# Disable some telemetry
12+
yarn config set --home enableTelemetry 0

.yarn/sdks/typescript/bin/tsc

100644100755
File mode changed.

.yarn/sdks/typescript/bin/tsserver

100644100755
File mode changed.

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Prerequisites:
3636

3737
Once you have the prerequisites and a local clone of the repository, open a shell to the root of the cloned repo and run `yarn` to install the packages. Once that's done, you can use `yarn build` to build. Other scripts are available in `package.json` for things like running tests or building documentation.
3838

39+
In order to get Typescript behaving correctly, you may need to follow the [instructions provided by the Yarn team](https://yarnpkg.com/getting-started/editor-sdks#vscode) to get redirection working in your IDE.
40+
3941
### Implement changes
4042

4143
The three main things you'll update are the code, the tests, and the documentation. How you choose to make these updates is up to you. When your changes are pushed and ready for a PR the expectation is that all changes to these areas are done.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grapoza/vue-tree",
3-
"version": "7.0.3",
3+
"version": "7.0.4",
44
"description": "Tree components for Vue 3",
55
"author": "Gregg Rapoza <grapoza@gmail.com>",
66
"license": "MIT",

0 commit comments

Comments
 (0)