Skip to content

Commit

Permalink
build: add script to generate Vuetify API data
Browse files Browse the repository at this point in the history
Also the answer to #270
  • Loading branch information
mariobuikhuizen committed Nov 23, 2023
1 parent 2c5cbb4 commit 270efce
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -11,6 +11,7 @@ build/

# generated code
generate_source/build
generate_source/vuetify
ipyvuetify/generated
js/src/generated

Expand Down
15 changes: 15 additions & 0 deletions generate_source/generate_api.sh
@@ -0,0 +1,15 @@
#!/bin/bash

#Note!: this will only built node node <=14

# use script directory as working directory
cd "${0%/*}"

rm -rf vuetify
git clone --branch v2.2.26 --depth 1 https://github.com/vuetifyjs/vuetify.git
npm install -g yarn
python patch_vuetify_build.py
(cd vuetify && yarn --ignore-optional && yarn build)

node -e 'console.log(JSON.stringify(require("./vuetify/packages/api-generator/dist/api.js"), null, 2))' > vuetify_api.json
pre-commit run --files vuetify_api.json
7 changes: 7 additions & 0 deletions generate_source/patch_vuetify_build.py
@@ -0,0 +1,7 @@
# upgrading these packages fails when using yarn cli
for path in ["vuetify/packages/vuetify/package.json", "vuetify/packages/docs/package.json"]:
with open(path, "r") as f:
file_contents = f.read()

with open(path, "w") as f:
f.write(file_contents.replace('"fibers": "^4.0.1"', '"fibers": "^5"'))

0 comments on commit 270efce

Please sign in to comment.