Skip to content

Commit d2e691f

Browse files
zifeoNatoandro
andauthored
fix: website and headline (#691)
<!-- Pull requests are squash merged using: - their title as the commit message - their description as the commit body Having a good title and description is important for the users to get readable changelog and understand when they need to update his code and how. --> <!-- Explain WHAT the change is --> #### Motivation and context Fix the CSS issue introduced by docusaurus 3.2.0 (facebook/docusaurus#10005). 3.2.1 should fix it but the affected version maybe loaded by dependencies, so we will have to wait a bit more. <!-- Explain WHY the was made or link an issue number --> <!-- Explain HOW users should update their code when required --> ### Checklist - [ ] The change come with new or modified tests - [x] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change --------- Co-authored-by: Natoandro <[email protected]>
1 parent 4db7dc7 commit d2e691f

File tree

20 files changed

+9927
-7010
lines changed

20 files changed

+9927
-7010
lines changed

.ghjk/deno.lock

Lines changed: 27 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.ghjk/lock.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,11 @@
402402
"portRef": "[email protected]",
403403
"crateName": "whiz",
404404
"locked": true
405+
},
406+
"66212eb79fbcb37961450d5dfffdaedc0b949e0e7c9257c3c63093d009a5fc75": {
407+
"version": "v9.0.5",
408+
"depConfigs": {},
409+
"portRef": "[email protected]"
405410
}
406411
}
407412
},
@@ -424,7 +429,7 @@
424429
"57da4ca242ec52ba50359a7fd78653e6bf253df0",
425430
"67d371eb0c4ae641830a955975d7134f7ee9a864",
426431
"4ca29edff5e070fd0885680b178ed6948d7a4c7f",
427-
"dd83a99f49f3f0fba11cdd014ff718cc9539316b",
432+
"a12d1020fe585e5ea75d9a2035bdcbde8dd90044",
428433
"4d1916871a40b6ac730709f7721f740df192c84d",
429434
"4df902463d60efc5b8e760ea4899f6ab6df0f16e",
430435
"88f6aa5ddb513712623d31a17096ea26286064da",
@@ -755,8 +760,8 @@
755760
"moduleSpecifier": "https://raw.githubusercontent.com/metatypedev/ghjk/423d38e/ports/node.ts"
756761
}
757762
},
758-
"dd83a99f49f3f0fba11cdd014ff718cc9539316b": {
759-
"version": "v8.15.2",
763+
"a12d1020fe585e5ea75d9a2035bdcbde8dd90044": {
764+
"version": "v9.0.5",
760765
"port": {
761766
"ty": "denoWorker@v1",
762767
"name": "pnpm_ghrel",

.github/pull_request_template.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,29 @@ Pull requests are squash merged using:
33
- their title as the commit message
44
- their description as the commit body
55
6-
Having a good title and description is important for the users to get readable changelog and understand when they need to update his code and how.
6+
Having a good title and description is important for the users to get readable changelog.
77
-->
88

9-
<!-- Explain WHAT the change is -->
9+
<!-- 1. Explain below WHAT the change is -->
1010

11-
#### Motivation and context
11+
...
1212

13-
<!-- Explain WHY the was made or link an issue number -->
13+
<!-- 2. Explain below WHY the change cannot be made simpler -->
1414

15-
#### Migration notes
15+
...
16+
17+
<!-- 3. Explain below WHY the was made or link an issue number -->
18+
19+
...
1620

17-
<!-- Explain HOW users should update their code when required -->
21+
<!-- 4. Explain HOW users should update their code or remove that section -->
1822

19-
### Checklist
23+
#### Migration notes
24+
25+
...
2026

27+
<!-- 5. Readiness checklist
2128
- [ ] The change come with new or modified tests
2229
- [ ] Hard-to-understand functions have explanatory comments
2330
- [ ] End-user documentation is updated to reflect the change
31+
-->

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ jobs:
262262
- shell: bash
263263
env:
264264
WASM_FILE: target/debug/typegraph_core.wasm
265+
NPM_CONFIG_REGISTRY: http://localhost:4873
265266
run: |
266267
echo pwd in $(pwd)
267268
@@ -278,14 +279,14 @@ jobs:
278279
mkdir -p $(dirname $WASM_FILE)
279280
wasm-opt -Oz target/wasm/wasm32-unknown-unknown/debug/typegraph_core.wasm -o $WASM_FILE.opt
280281
wasm-tools component new $WASM_FILE.opt -o $WASM_FILE
281-
282+
282283
jco transpile $WASM_FILE -o typegraph/node/sdk/src/gen --map metatype:typegraph/host=../host/host.js
283284
cd typegraph/node
284285
pnpm install
285286
pnpm run sdk-build
286287
cp ./sdk/{package.json,package-lock.json,LICENSE.md} ./sdk/dist
287288
cd ../..
288-
289+
289290
poetry run python -m wasmtime.bindgen $WASM_FILE --out-dir typegraph/python/typegraph/gen
290291
291292
# start the docker containers
@@ -294,7 +295,7 @@ jobs:
294295
# publish the sdk to the local registry
295296
cd typegraph/node/sdk/dist
296297
npm config set "//localhost:4873/:_authToken" fooBar
297-
npm publish --registry http://localhost:4873
298+
npm publish --registry $NPM_CONFIG_REGISTRY
298299
cd ../../../..
299300
300301
# install packages inside metatype examples
@@ -312,12 +313,12 @@ jobs:
312313
# from old test-libs
313314
cargo test --locked --exclude meta-cli --exclude typegate --exclude typegate_engine --exclude typegraph_core --exclude metagen_mdk_rust_static --workspace
314315
315-
NPM_CONFIG_REGISTRY=http://localhost:4873 deno run -A dev/update.ts --cache-only || deno run -A dev/update.ts --cache-only
316+
deno run -A dev/update.ts --cache-only || deno run -A dev/update.ts --cache-only
316317
cargo build -p meta-cli
317318
cargo build -p xtask # xtask and meta-cli are used by the test suite
318319
deno run -A dev/test.ts --threads 1 -- --coverage=coverage
319320
# FIXME: required due to https://github.com/denoland/deno/issues/21621#issuecomment-1887870712
320-
NPM_CONFIG_REGISTRY=http://localhost:4873 deno cache --import-map typegate/import_map.json \
321+
deno cache --import-map typegate/import_map.json \
321322
typegate/src/main.ts \
322323
typegate/tests/utils/*.ts \
323324
typegate/tests/runtimes/wasm/*.ts \

0 commit comments

Comments
 (0)