Skip to content

Commit

Permalink
Version 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oysteinmoseng committed May 23, 2024
1 parent dd3bb00 commit ece88e6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Changelog

## [18.04.2024] 1.0.0 - initial release of the package! 🎉
## [23.05.2024] 0.0.9 - initial release of the package! 🎉
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A lightweight Svelte wrapper for Highcharts, making it easy to integrate Highcha
You can install `highcharts-svelte` using npm:

```bash
npm install highcharts-svelte highcharts --save
npm install @highcharts/svelte highcharts --save
```

Highcharts is a peer dependency of this package, and you need to install it separately.
Expand All @@ -35,7 +35,7 @@ The package exports the `Chart`, `StockChart`, `MapChart`, `GanttChart` componen
<script lang="ts">
import Highcharts from 'highcharts';
import ExportingModule from 'highcharts/modules/exporting';
import { Chart } from 'highcharts-svelte'; // Chart is also exported by default
import { Chart } from '@highcharts/svelte'; // Chart is also exported by default
// Applying a certain Highcharts module
ExportingModule(Highcharts);
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "highcharts-svelte",
"name": "@highcharts/svelte",
"description": "A simple & intuitive Svelte wrapper for Highcharts",
"version": "1.0.0",
"version": "0.0.9",
"homepage": "https://www.highcharts.com/integrations/svelte/",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -21,9 +22,9 @@
"author": "Jakub Szumiński <[email protected]>",
"repository": "https://github.com/highcharts/highcharts-svelte",
"bugs": {
"url": "https://github.com/highcharts/highcharts-vue/issues"
"url": "https://github.com/highcharts/highcharts-svelte/issues"
},
"license": "SEE LICENSE IN LICENSE",
"license": "https://www.highcharts.com/license",
"lint-staged": {
"{.js,.ts,.svelte}": "eslint"
},
Expand Down Expand Up @@ -58,7 +59,7 @@
"vite": "^5.1.4"
},
"peerDependencies": {
"highcharts": ">5.0.0",
"highcharts": ">11.0.0",
"svelte": ">=3.0.0 <5.0.0"
}
}

0 comments on commit ece88e6

Please sign in to comment.