mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
+vitejs.dev (#3783)
* +vitejs.dev * try fix * fix tests * test fix try * check Brewkit version
This commit is contained in:
parent
ce04d7169a
commit
b028ead93b
24
projects/vitejs.dev/package.yml
Normal file
24
projects/vitejs.dev/package.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
distributable: ~
|
||||
|
||||
versions:
|
||||
github: vitejs/vite/tags
|
||||
strip: /v/
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
deno.land: "*"
|
||||
script: |
|
||||
{{pkgx.prefix}}/pkgx.sh/brewkit/v0/bin/pkg --version
|
||||
mkdir -p "{{prefix}}"/bin
|
||||
deno compile -Ar npm:vite@{{version.raw}} -o vite
|
||||
mv vite "{{prefix}}"/bin/vite # If the binay doesn't get built, the build will fail, not the tests. So, we'll know.
|
||||
# Required. Else, wouldn't work.
|
||||
skip: fix-patchelf
|
||||
|
||||
test:
|
||||
script: |
|
||||
vite --version
|
||||
test "$(vite --version | grep -o 'vite/[^ ]*')" = "vite/{{version.raw}}"
|
||||
|
||||
provides:
|
||||
- bin/vite
|
Loading…
Reference in a new issue