Skip to content

Commit

Permalink
Merge pull request #752 from vega/next
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz authored Sep 21, 2021
2 parents b074b2e + a97b015 commit b964ed0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches-ignore:
# No canary deploys for branches opened by dependabot
- 'dependabot/**'
- "dependabot/**"

jobs:
publish:
Expand Down Expand Up @@ -32,8 +32,7 @@ jobs:

# don't use yarn run to avoid using yarnpkg registry
- name: Create release
run: |
npm run release
run: npm run release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"rollup-plugin-terser": "^7.0.2",
"rollup": "2.56.3",
"typescript": "^4.4.3",
"vega-interpreter": "^1.0.4",
"vega-lite-dev-config": "^0.18.0",
"vega-lite": "^5.0.0",
"vega": "^5.19.1"
Expand All @@ -70,6 +69,7 @@
"json-stringify-pretty-compact": "^3.0.0",
"semver": "^7.3.5",
"tslib": "^2.3.1",
"vega-interpreter": "^1.0.4",
"vega-schema-url-parser": "^2.2.0",
"vega-themes": "^2.10.0",
"vega-tooltip": "^0.27.0"
Expand Down
2 changes: 0 additions & 2 deletions test-vg.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Vega-Embed for Vega</title>

<script src="https://cdn.jsdelivr.net/npm/vega-interpreter"></script>
<script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
<script src="build/vega-embed.js"></script>
</head>
Expand All @@ -17,7 +16,6 @@
const result = await vegaEmbed("#vis", "bar-chart.vg.json", {
theme: "dark",
loader: { baseURL: "https://vega.github.io/vega/examples/" },
// ast: true
});

console.log(result);
Expand Down

0 comments on commit b964ed0

Please sign in to comment.