Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade TypeScript, webpack and Github CI #117

Merged
merged 1 commit into from
Oct 18, 2024
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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
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.

Loading