Skip to content

Commit

Permalink
docker compose magic
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Sep 12, 2024
1 parent 21094c3 commit 9b864c0
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 51 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"link:database-pg": "cd packages/database-pg && npm link @abaplint/runtime",
"link:database-snowflake": "cd packages/database-snowflake && npm link @abaplint/runtime",
"link:cli": "cd packages/cli && npm link --force && npm link @abaplint/transpiler",
"docker:start": "docker compose -f test/stack.yml up -d",
"docker:stop": "docker compose -f test/stack.yml down",
"docker:start": "docker compose -p transpiler -f test/stack.yml up -d",
"docker:stop": "docker compose -p transpiler -f test/stack.yml down -v",
"lint": "eslint packages/**/*.ts --format unix"
},
"repository": {
Expand Down Expand Up @@ -186,7 +186,7 @@
},
"homepage": "https://github.com/abaplint/transpiler_poc#readme",
"devDependencies": {
"@abaplint/core": "^2.113.7",
"@abaplint/core": "^2.113.8",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
Expand All @@ -206,6 +206,6 @@
"source-map-support": "^0.5.21",
"sql.js": "^1.11.0",
"temporal-polyfill": "^0.2.5",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
}
}
14 changes: 7 additions & 7 deletions packages/cli/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"glob": "=7.2.0",
"@types/progress": "^2.0.7",
"@types/node": "^22.5.4",
"@abaplint/core": "^2.113.7",
"@abaplint/core": "^2.113.8",
"progress": "^2.0.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
Expand Down
14 changes: 7 additions & 7 deletions packages/runtime/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"chai": "^4.5.0",
"mocha": "^10.7.3",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
},
"dependencies": {
"temporal-polyfill": "^0.2.5"
Expand Down
28 changes: 14 additions & 14 deletions packages/transpiler/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/transpiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"author": "abaplint",
"license": "MIT",
"dependencies": {
"@abaplint/core": "^2.113.7",
"@abaplint/core": "^2.113.8",
"source-map": "^0.7.4"
},
"devDependencies": {
Expand All @@ -38,6 +38,6 @@
"chai": "^4.5.0",
"mocha": "^10.7.3",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
}
}
1 change: 0 additions & 1 deletion test/stack.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Use postgres/example user/password credentials
version: '3.1'

services:
postgresql:
Expand Down

0 comments on commit 9b864c0

Please sign in to comment.