Created
February 17, 2022 06:51
-
-
Save paulyves/6cd1e16bfb8c2ef25ff3e74da0cd9fca to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| diff --git a/CHANGES.md b/CHANGES.md | |
| index 4ea0f84..e4ec59a 100644 | |
| --- a/CHANGES.md | |
| +++ b/CHANGES.md | |
| @@ -1,3 +1,10 @@ | |
| +Version 1.5.1: | |
| + - Delta-1641 Platform > Freedom Components > use FTable from freedom-components [(#47)](https://github.com/anyTV/quasar-boilerplate/pull/47) | |
| + | |
| +Version 1.4.0: | |
| + - Dev-3914 Table page layout > Create a reusable component for pages with one table [(#33)](https://github.com/anyTV/quasar-boilerplate/pull/33) | |
| + - Added feature for switching between dark and light theme | |
| + | |
| Version 1.3.0: | |
| - HD-108695 Freedom.tm > GA not tracking properly [(#32)](https://github.com/anyTV/quasar-boilerplate/pull/32) | |
| - Quasar upgrade [(#31)](https://github.com/anyTV/quasar-boilerplate/pull/31) | |
| @@ -6,8 +13,4 @@ Version 1.3.0: | |
| - HD-107271 Quasar Boilerplate > Implement new version notification [(#28)](https://github.com/anyTV/quasar-boilerplate/pull/28) | |
| - Dev-3287 Platform > Update Quasar Boilerplate to V1 [(#27)](https://github.com/anyTV/quasar-boilerplate/pull/27) | |
| - Add dev script; Add installing cross-env in README [(#26)](https://github.com/anyTV/quasar-boilerplate/pull/26) | |
| - | |
| -Version 1.4.0: | |
| - - Dev-3914 Table page layout > Create a reusable component for pages with one table [(#33)](https://github.com/anyTV/quasar-boilerplate/pull/33) | |
| - - Added feature for switching between dark and light theme | |
| \ No newline at end of file | |
| diff --git a/package.json b/package.json | |
| index 41d6b58..58510ed 100644 | |
| --- a/package.json | |
| +++ b/package.json | |
| @@ -1,6 +1,6 @@ | |
| { | |
| "name": "anytv-quasar-boilerplate", | |
| - "version": "1.5.0", | |
| + "version": "1.5.1", | |
| "description": "AnyTV Quasar Boilerplate", | |
| "repository": "https://github.com/anyTV/quasar-boilerplate", | |
| "productName": "Freedom! App", | |
| @@ -11,9 +11,11 @@ | |
| "url": "www.freedom.tm" | |
| }, | |
| "scripts": { | |
| + "preinstall": "find ./node_modules* -xtype l -delete || echo skip preinstall", | |
| "lint": "eslint --ext .js,.vue src", | |
| "dev": "cross-env node node_modules/@quasar/cli/bin/quasar dev", | |
| - "docs": "esdoc" | |
| + "docs": "esdoc", | |
| + "postinstall": "npm i --no-save ./node_modules/quasar-app-extension-freedom-components/f-table" | |
| }, | |
| "dependencies": { | |
| "@panter/vue-i18next": "^0.15.1", | |
| @@ -28,6 +30,7 @@ | |
| "moment": "^2.20.1", | |
| "qs": "^6.5.2", | |
| "quasar": "^1.15.23", | |
| + "quasar-app-extension-freedom-components": "git+https://freedom-components-readonly:[email protected]/anyTV/incubator/freedom-components.git", | |
| "vue": "2.6.11", | |
| "vue-gtm": "3.1.0-vue2", | |
| "vue-router": "^3.0.1", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment