Spencer von der Ohe
Spencer von der Ohe
Make sure your `serverless`, `serverless-plugin-typescript` etc. are in `devDependencies` and not in `dependencies`: ``` "devDependencies": { "serverless": "^3.23.0", "serverless-offline": "^11.2.3", "serverless-plugin-typescript": "^2.1.4", "serverless-python-requirements": "^6.0.0", "typescript": "^4.8.4" } ```
@shuaichang Could you please have another look at reviewing this PR?
@yuchen0cc Could you please merge `kata-containers:main` into your branch, I think one of the PR checks is failing because the branch is not up to date?
@bergwolf Could you please review this PR?
@yuchen0cc It looks like one of the checks is failing because [a749dd1](https://github.com/kata-containers/kata-containers/commit/a749dd1ada39aa8a088142969881eff7211db6ad) does not have a commit message body I think updating it to something like this should work: ```...
I think that code looks good, but I'll try running locally (I think I should have some time to test locally tomorrow)
Tested locally with `overlaybd` and it works as expected: ``` $ sudo nerdctl run --cgroup-manager=cgroupfs --runtime io.containerd.run.kata.v2 --snapshotter=overlaybd --rm -it registry.hub.docker.com/overlaybd/redis:6.2.1_obd /bin/sh # df -h Filesystem Size Used Avail Use%...
As a work around you can define your own `citet` (and `citep`) functions: ``` #let citet(..citation) = { cite(..citation,brackets:false) } #let citep(..citation) = { cite(..citation,brackets:true) } ``` Then use like...
@coljac You want to use `citet` (for text), not `citep` (for parentheses)
@coljac You can also use regex in the function Here is a more complete example based loosely on [apacite](https://github.com/typst/typst/issues/1161#issuecomment-1575227174):  `main.typ`: ``` #import "template.typ": * // Take a look at...