-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
56 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
## [3.0.0](https://github.com/avimehenwal/vue-gsheets/compare/v2.0.1...v3.0.0) (2020-07-10) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* **netlify:** ignore es-lint warning | ||
|
||
### build | ||
|
||
* **netlify:** add netlify.toml file ([482571a](https://github.com/avimehenwal/vue-gsheets/commit/482571a653e03e00eb4399e5986b6f898bab5f94)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
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,18 +1,31 @@ | ||
{ | ||
"name": "vue-gsheets", | ||
"version": "3.0.0", | ||
"description": "Transform data provided by public google sheet api to be used easily within vue components", | ||
"main": "npm-package/index.js", | ||
"repository": "[email protected]:avimehenwal/vue-gsheets.git", | ||
"author": "avimehenwal <[email protected]>", | ||
"license": "MIT", | ||
"version": "3.0.2", | ||
"description": "Transform data from published google sheets to usable vue items format", | ||
"main": "index.js", | ||
"author": "avimehenwal", | ||
"license": "ISC", | ||
"homepage": "https://github.com/avimehenwal/vue-gsheets#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/avimehenwal/vue-gsheets.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/avimehenwal/vue-gsheets/issues" | ||
}, | ||
"scripts": { | ||
"commit": "git cz" | ||
"commit": "git cz", | ||
"changelog": "standard-version --dry-run", | ||
"publish": "npm publish --access public" | ||
}, | ||
"files": [ | ||
"index.js" | ||
], | ||
"dependencies": { | ||
"commitizen": "^4.1.2" | ||
"axios": "^0.19.2" | ||
}, | ||
"devDependencies": { | ||
"commitizen": "^4.1.2", | ||
"cz-conventional-changelog": "3.2.0", | ||
"cz-emoji": "^1.2.1", | ||
"eslint": "^7.4.0", | ||
|
@@ -29,5 +42,14 @@ | |
"commitizen": { | ||
"path": "cz-emoji" | ||
} | ||
} | ||
}, | ||
"keywords": [ | ||
"vuejs", | ||
"vue", | ||
"google-sheets", | ||
"sheets", | ||
"gsheet", | ||
"spreadsheet", | ||
"parser" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
``` | ||
yarn add link:../npm-package | ||
yarn add link:../ | ||
``` |
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