-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version solara-vuetify-app: 10.0.2 → 10.0.3
- Loading branch information
1 parent
c1a3fef
commit 958ebf2
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "@widgetti/solara-vuetify-app", | ||
"version": "10.0.2", | ||
"version": "10.0.3", | ||
"description": "Solara Vuetify App", | ||
"main": "dist/solara-vuetify-app.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "webpack", | ||
"watch": "webpack --watch --mode=development", | ||
"devlink": "TARGET_DIR=`python -c \"import sys; print(sys.prefix)\"`/share/solara/cdn/@widgetti/[email protected].2/; mkdir -p $TARGET_DIR && rm -rf $TARGET_DIR/dist && ln -sf $PWD/dist $TARGET_DIR/dist" | ||
"devlink": "TARGET_DIR=`python -c \"import sys; print(sys.prefix)\"`/share/solara/cdn/@widgetti/[email protected].3/; mkdir -p $TARGET_DIR && rm -rf $TARGET_DIR/dist && ln -sf $PWD/dist $TARGET_DIR/dist" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
set -e -o pipefail | ||
# usage: ./release minor -n | ||
(git diff --quiet master @widgetti/[email protected].2 -- packages/solara-vuetify-app) || {\ | ||
(git diff --quiet master @widgetti/[email protected].3 -- packages/solara-vuetify-app) || {\ | ||
echo -e "\033[31m There are unreleased changes to the solara-vuetify-app package.\n Please release the javascript package before Solara by running \n\n \ | ||
\033[0m (cd packages/solara-vuetify-app && ./release.sh <patch | minor | major> -n)\n"; \ | ||
exit 1;} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
{% if vue3 == True %} | ||
<link href="{{cdn}}/@widgetti/[email protected]/dist/main{{ipywidget_major_version}}.css" rel="stylesheet" class="solara-template-css"></link> | ||
{% else %} | ||
<link href="{{cdn}}/@widgetti/[email protected].2/dist/main{{ipywidget_major_version}}.css" rel="stylesheet" class="solara-template-css"></link> | ||
<link href="{{cdn}}/@widgetti/[email protected].3/dist/main{{ipywidget_major_version}}.css" rel="stylesheet" class="solara-template-css"></link> | ||
{% endif %} | ||
|
||
|
||
|
@@ -228,11 +228,11 @@ | |
<script src="{{cdn}}/@widgetti/[email protected]/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script> | ||
{% endif %} | ||
{% else %} | ||
<link href="{{cdn}}/@widgetti/[email protected].2/dist/fonts.css" rel="stylesheet" fetchpriority="low"></link> | ||
<link href="{{cdn}}/@widgetti/[email protected].3/dist/fonts.css" rel="stylesheet" fetchpriority="low"></link> | ||
{% if production %} | ||
<script src="{{cdn}}/@widgetti/[email protected].2/dist/solara-vuetify-app{{ipywidget_major_version}}.min.js"></script> | ||
<script src="{{cdn}}/@widgetti/[email protected].3/dist/solara-vuetify-app{{ipywidget_major_version}}.min.js"></script> | ||
{% else %} | ||
<script src="{{cdn}}/@widgetti/[email protected].2/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script> | ||
<script src="{{cdn}}/@widgetti/[email protected].3/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script> | ||
{% endif %} | ||
{% endif %} | ||
<script> | ||
|