Skip to content

Commit

Permalink
Upgrade TypeScript and webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
vogelsgesang committed Oct 18, 2024
1 parent 1794f92 commit 4f89082
Show file tree
Hide file tree
Showing 7 changed files with 11,519 additions and 8,031 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
node-version: '^20.18.0'

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v1
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
"typescript": "^5.6.3"
}
}
4 changes: 2 additions & 2 deletions query-graphs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"devDependencies": {
"@types/d3-hierarchy": "^3.1.2",
"copyfiles": "^2.4.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"scripts": {
"clean": "rimraf dist/",
Expand Down
4 changes: 2 additions & 2 deletions query-graphs/src/tableau.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ function getNodeRenderingConfig(tag: string, properties: Map<string, string>): N
case "funcallExp":
return {displayName: extractProperty(properties, "function") ?? tag};
case "literal":
return {displayName: properties?.get("datatype") + ":" + properties?.get("value") ?? tag};
return {displayName: properties?.get("datatype") + ":" + properties?.get("value")};
case "referenceExp":
return {displayName: "ref:" + properties?.get("ref") ?? tag};
return {displayName: "ref:" + properties?.get("ref")};
case "condition":
return {displayName: extractProperty(properties, "op") ?? tag};
case "binding":
Expand Down
8 changes: 4 additions & 4 deletions standalone-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
"timers-browserify": "2.0.12",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.94.0",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions upload-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.19.2",
"multer": "^1.4.4",
"debug": "^4.3.4"
"multer": "^1.4.4"
}
}
19,521 changes: 11,503 additions & 8,018 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 4f89082

Please sign in to comment.