Skip to content

Commit

Permalink
Update to use JSCharting v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurPuszynski committed Oct 27, 2020
1 parent 06f879e commit 6976304
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules/**
/examples/**
/dist/*.html
/dist/*.html
/.idea/*
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [1.2.1] - 2020-10-27

### Changed
- Update JSCharting version to v3.0.1

## [1.2.0] - 2020-10-26

### Changed
Expand Down
16 changes: 8 additions & 8 deletions examples/package-lock.json

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

4 changes: 2 additions & 2 deletions examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jscharting-vue-examples",
"version": "1.0.2",
"version": "1.1.0",
"description": "Examples using the JSCharting plugin for React.",
"scripts": {
"start": "vue-cli-service serve",
Expand All @@ -14,7 +14,7 @@
"license": "jscharting.com/store/",
"dependencies": {
"core-js": "^3.6.5",
"jscharting-vue": "^1.2.0",
"jscharting-vue": "^1.2.1",
"vue": "^2.6.12"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jscharting-vue",
"version": "1.2.0",
"version": "1.2.1",
"description": "JSCharting plugin for Vue.js",
"homepage": "https://jscharting.com/",
"author": "JSCharting <[email protected]> (https://jscharting.com/support.htm)",
Expand Down Expand Up @@ -32,7 +32,7 @@
}
},
"dependencies": {
"jscharting": "^3.0.0"
"jscharting": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
Expand Down
2 changes: 1 addition & 1 deletion tests/jscgrid.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('JSCGrid unit tests', () => {
});

test('Wrapper is a Vue instance', () => {
expect(wrapper.isVueInstance()).toBeTruthy();
expect(wrapper.exists()).toBeTruthy();
});

test('Grid should be destroyed after component is destroyed.', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/jsclabel.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('JSCLabel unit tests', () => {
const element = wrapper.element;

test('Wrapper is a Vue instance', () => {
expect(wrapper.isVueInstance()).toBeTruthy();
expect(wrapper.exists()).toBeTruthy();
});

test('Label data is set correctly', () => {
Expand Down

0 comments on commit 6976304

Please sign in to comment.