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 packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"vscode:package": "pnpm bundle && vsce package --no-dependencies",
"clean": "rimraf dist",
"build": "pnpm clean && pnpm lint --max-warnings=0 && tsc && copyfiles -F \"bin/*\" dist && copyfiles ./README-global.md ./LICENSE ./package.json dist && renamer --replace \"README.md\" dist/README-global.md && copyfiles -u 1 \"src/res/*\" dist && node build/post-build.js && pnpm pack dist --pack-destination ../../../.build",
"bundle": "rimraf bundle && pnpm lint --max-warnings=0 && node build/bundle.js --minify",
"bundle": "rimraf bundle && tsc -p tsconfig.vscode.json --noEmit && pnpm lint --max-warnings=0 && node build/bundle.js --minify",
"watch": "tsc --watch",
"lint": "eslint src tests --ext ts",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/src/vscode/vscode-telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class VSCodeTelemetry {
this.mixpanel.track('$identify', {
$identified_id: userId,
$anon_id: this.deviceId,
token: TELEMETRY_TRACKING_TOKEN,
token: VSCODE_TELEMETRY_TRACKING_TOKEN,
});
}
}
Expand Down
7 changes: 7 additions & 0 deletions packages/schema/tsconfig.vscode.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/*.ts"]
}
Loading