Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdanielamoitzi committed Sep 22, 2023
2 parents 5dd79c3 + f766f5e commit a22ce62
Show file tree
Hide file tree
Showing 11 changed files with 346 additions and 597 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- name: Change version number
id: version
run: |
echo -n "::set-output name=next_tag::"
lerna version ${{ github.event.inputs.versionName }} --no-private --no-git-tag-version --yes --no-push
next_tag=$(lerna version ${{ github.event.inputs.versionName }} --no-private --no-git-tag-version --yes --no-push)
echo "next_tag=$next_tag" >> "$GITHUB_OUTPUT"
- name: Create pull request into main
uses: peter-evans/create-pull-request@v4
with:
Expand Down
14 changes: 14 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
lerna-debug.log
.sass-cache
.jekyll-metadata
.DS_Store
/.idea
/.vscode
/build
/docs/_site
/docs/Gemfile.lock
/node_modules
/packages/*/node_modules
/packages/*/build
/packages/*/LICENSE
tsconfig.tsbuildinfo
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,7 @@ For a basic setup allowing you to build and run examples:

```
git clone https://github.com/datavisyn/visAhoi.git
cd onboarding-prototype
npm install
cd visAhoi
npm run bootstrap
```

Expand Down
3 changes: 1 addition & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
"packages": [
"packages/*"
],
"useWorkspaces": true,
"version": "4.0.0"
"version": "4.0.1"
}
889 changes: 316 additions & 573 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visahoi/core",
"version": "4.0.0",
"version": "4.0.1",
"description": "Core library for the visualization onboarding",
"keywords": [
"visualization",
Expand Down
8 changes: 4 additions & 4 deletions packages/demos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
"dependencies": {
"sirv-cli": "^2.0.0",
"@types/plotly.js-dist-min": "^2.3.0",
"@visahoi/plotly": "3.0.0",
"@visahoi/echarts": "3.0.0",
"@visahoi/vega": "3.0.0",
"@visahoi/plotly": "4.0.0",
"@visahoi/echarts": "4.0.0",
"@visahoi/vega": "4.0.0",
"plotly.js": "^2.2.1",
"plotly.js-dist-min": "~2.12.0",
"echarts": "^5.1.2",
"vega": "^5.24.0",
"vega": "^5.23.0",
"vega-embed": "^6.21.3",
"vega-lite": "^5.6.1",
"svelte-resize-observer": "^2.0.0"
Expand Down
6 changes: 0 additions & 6 deletions packages/demos/src/Components/VegaLite/Treemap/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,6 @@ export const options = {
parent: 4,
size: 100,
},
{
id: 23,
name: "Workforce development",
parent: 4,
size: 100,
},
{
id: 24,
name: "Home/community-based care",
Expand Down
4 changes: 2 additions & 2 deletions packages/echarts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visahoi/echarts",
"version": "4.0.0",
"version": "4.0.1",
"description": "Echarts adapter for the visualization onboarding library",
"keywords": [
"visualization",
Expand Down Expand Up @@ -42,7 +42,7 @@
"typescript": "^4.3.5"
},
"dependencies": {
"@visahoi/core": "^4.0.0",
"@visahoi/core": "^4.0.1",
"d3": "^7.0.0",
"echarts": "^5.1.2"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/plotly/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visahoi/plotly",
"version": "4.0.0",
"version": "4.0.1",
"description": "Plotly adapter for the visualization onboarding library",
"keywords": [
"visualization",
Expand Down Expand Up @@ -43,6 +43,6 @@
"typescript": "^4.3.5"
},
"dependencies": {
"@visahoi/core": "^4.0.0"
"@visahoi/core": "^4.0.1"
}
}
6 changes: 3 additions & 3 deletions packages/vega/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visahoi/vega",
"version": "4.0.0",
"version": "4.0.1",
"description": "Vega adapter for the visualization onboarding library",
"keywords": [
"visualization",
Expand Down Expand Up @@ -42,8 +42,8 @@
"typescript": "^4.3.5"
},
"dependencies": {
"@visahoi/core": "^4.0.0",
"vega": "5.22.1",
"@visahoi/core": "^4.0.1",
"vega": "5.23.0",
"vega-embed": "6.19.1",
"vega-lite": "5.1.1"
}
Expand Down

0 comments on commit a22ce62

Please sign in to comment.