Skip to content

Commit

Permalink
Moved dh folder into subpackage (#79-1)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Sep 20, 2024
1 parent 95bf263 commit 994d42e
Show file tree
Hide file tree
Showing 20 changed files with 339 additions and 24 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"project": [
"./tsconfig.json",
"./e2e/tsconfig.json",
"./tsconfig.unit.json"
"./tsconfig.unit.json",
"./packages/*/tsconfig.json"
]
},

Expand Down
80 changes: 73 additions & 7 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"onStartupFinished"
],
"main": "./out/extension.js",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf out",
"icon:gen": "node icons/generate.mjs",
Expand All @@ -33,7 +36,7 @@
"test:e2e": "npm run ts:build && cd e2e && wdio run ./wdio.conf.ts",
"test:lint": "eslint . --ext ts",
"test:unit": "vitest --reporter=default --reporter=junit --outputFile=./test-reports/vitest.junit.xml",
"ts:build": "npm run clean && tsc -p ./tsconfig.json",
"ts:build": "npm run clean && tsc --build ./tsconfig.json",
"ts:check": "tsc -p ./tsconfig.json --noEmit --module preserve --moduleResolution bundler && tsc -p tsconfig.unit.json --noEmit --module preserve --moduleResolution bundler && tsc -p e2e/tsconfig.json --noEmit --skipLibCheck",
"ts:watch": "npm run ts:build -- --watch",
"package": "vsce package -o releases/",
Expand Down Expand Up @@ -750,6 +753,7 @@
"wdio-vscode-service": "^6.1.0"
},
"dependencies": {
"@deephaven/require-jsapi": "file:./packages/require-jsapi",
"ws": "^8.18.0"
}
}
Loading

0 comments on commit 994d42e

Please sign in to comment.