diff options
| author | 2023-10-05 16:06:19 +0200 | |
|---|---|---|
| committer | 2023-10-05 16:06:19 +0200 | |
| commit | d173fcdfa3ad6f6aee721c8553f25f4db38fa302 (patch) | |
| tree | 722cdaf93e090edcf83769ae763731008daf5fd3 /.goreleaser.yml | |
| parent | updates markdown parsing to reduce allocations in the same way as the plain t... (diff) | |
| download | gotosocial-d173fcdfa3ad6f6aee721c8553f25f4db38fa302.tar.xz | |
[chore] Convert some settings / admin panel JS to TypeScript (#2247)
* initial conversion of STUFF to typescript
* more stuff
* update babel deps, include commonjs transform
* update bundler & eslint configuration
* eslint --fix
* upgrade deps
* update docs, build stuff, peripheral stuff
---------
Co-authored-by: f0x <f0x@cthu.lu>
Diffstat (limited to '.goreleaser.yml')
| -rw-r--r-- | .goreleaser.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml index 743918c2c..1b49136c7 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -6,9 +6,9 @@ before: # generate the swagger.yaml file using go-swagger and bundle it into the assets directory - swagger generate spec --scan-models --exclude-deps -o web/assets/swagger.yaml - sed -i "s/REPLACE_ME/{{ incpatch .Version }}/" web/assets/swagger.yaml - # bundle web assets - - yarn install --cwd web/source - - scripts/bundle.sh + # Install web deps + bundle web assets + - yarn --cwd ./web/source install + - yarn --cwd ./web/source build builds: # https://goreleaser.com/customization/build/ - |
