nuxt-typed-vuex
Advanced tools
+103
-0
@@ -6,4 +6,107 @@ # Change Log | ||
| ## [0.1.14-alpha.2](https://github.com/danielroe/nuxt-typed-vuex/compare/nuxt-typed-vuex@0.1.14-alpha.0...nuxt-typed-vuex@0.1.14-alpha.2) (2019-12-12) | ||
| ### Performance Improvements | ||
| * exclude source maps ([e638b97](https://github.com/danielroe/nuxt-typed-vuex/commit/e638b977d971636f59cd58886fe69a0d008175b3)) | ||
| ## [0.1.14-alpha.1](https://github.com/danielroe/nuxt-typed-vuex/compare/nuxt-typed-vuex@0.1.14-alpha.0...nuxt-typed-vuex@0.1.14-alpha.1) (2019-12-12) | ||
| ### Performance Improvements | ||
| * exclude source maps ([e638b97](https://github.com/danielroe/nuxt-typed-vuex/commit/e638b977d971636f59cd58886fe69a0d008175b3)) | ||
| ## 0.1.14-alpha.0 (2019-12-08) | ||
| **Note:** Version bump only for package nuxt-typed-vuex | ||
| ### [0.1.13](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.13-beta.0...v0.1.13) (2019-11-26) | ||
| ### [0.1.12](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.11...v0.1.12) (2019-11-22) | ||
| ### Bug Fixes | ||
| - allow any kind of dispatch ([75f4637](https://github.com/danielroe/nuxt-typed-vuex/commit/75f463723d54949a98100c21481e5bae5f6d7a87)) | ||
| ### [0.1.11](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.10...v0.1.11) (2019-11-22) | ||
| ### Bug Fixes | ||
| - restore dispatch to action context ([019f1bb](https://github.com/danielroe/nuxt-typed-vuex/commit/019f1bb53ddac38fcde81c195a4df3c9afc49f57)), closes [#43](https://github.com/danielroe/nuxt-typed-vuex/issues/43) | ||
| ### [0.1.10](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.10-beta.2...v0.1.10) (2019-11-06) | ||
| ### [0.1.9](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.8...v0.1.9) (2019-11-03) | ||
| ### Bug Fixes | ||
| - require @nuxt/types and vuex as peer deps ([c1ebc33](https://github.com/danielroe/nuxt-typed-vuex/commit/c1ebc33)) | ||
| ### Features | ||
| - add example codesandbox ([a6b89b1](https://github.com/danielroe/nuxt-typed-vuex/commit/a6b89b1)) | ||
| - allow simpler usage of useAccessor ([9cb8cd2](https://github.com/danielroe/nuxt-typed-vuex/commit/9cb8cd2)), closes [#13](https://github.com/danielroe/nuxt-typed-vuex/issues/13) | ||
| ### [0.1.8](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.7...v0.1.8) (2019-10-13) | ||
| ### [0.1.7](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.6...v0.1.7) (2019-10-13) | ||
| ### Bug Fixes | ||
| - use correct paths on Windows machines ([56b714a](https://github.com/danielroe/nuxt-typed-vuex/commit/56b714a)) | ||
| ### [0.1.6](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.5...v0.1.6) (2019-10-11) | ||
| ### Features | ||
| - add rootState and rootGetters type helpers ([2661017](https://github.com/danielroe/nuxt-typed-vuex/commit/2661017)) | ||
| ### [0.1.5](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.4...v0.1.5) (2019-10-06) | ||
| ### Bug Fixes | ||
| - allow defining rootState & rootGetters ([fe484b2](https://github.com/danielroe/nuxt-typed-vuex/commit/fe484b2)) | ||
| ### Features | ||
| - add helper functions for use within store ([59bed72](https://github.com/danielroe/nuxt-typed-vuex/commit/59bed72)) | ||
| ### [0.1.4](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.3...v0.1.4) (2019-10-05) | ||
| ### Bug Fixes | ||
| - state is still required ([91ae3d7](https://github.com/danielroe/nuxt-typed-vuex/commit/91ae3d7)) | ||
| ### Features | ||
| - support state objects ([97ed828](https://github.com/danielroe/nuxt-typed-vuex/commit/97ed828)) | ||
| ### [0.1.3](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.2...v0.1.3) (2019-10-05) | ||
| ### Bug Fixes | ||
| - allow partial submodules ([d27bea0](https://github.com/danielroe/nuxt-typed-vuex/commit/d27bea0)) | ||
| - allow specifying different rootState ([a837a24](https://github.com/danielroe/nuxt-typed-vuex/commit/a837a24)) | ||
| - convert plugin to ts ([ae240eb](https://github.com/danielroe/nuxt-typed-vuex/commit/ae240eb)) | ||
| ### [0.1.2](https://github.com/danielroe/nuxt-typed-vuex/compare/v0.1.1...v0.1.2) (2019-10-04) | ||
| ### Features | ||
| - add commit and dispatch options ([ef320e7](https://github.com/danielroe/nuxt-typed-vuex/commit/ef320e7)) | ||
| ### 0.1.1 (2019-10-04) | ||
| ### Features | ||
| - initial commit ([b3eed9a](https://github.com/danielroe/nuxt-typed-vuex/commit/b3eed9a)) |
+6
-8
| { | ||
| "name": "nuxt-typed-vuex", | ||
| "version": "0.1.14-alpha.0", | ||
| "version": "0.1.14-alpha.2", | ||
| "description": "A typed store accessor for Nuxt.", | ||
@@ -23,3 +23,4 @@ "repository": "danielroe/nuxt-typed-vuex", | ||
| "files": [ | ||
| "lib" | ||
| "lib/**/*", | ||
| "!**/*.map" | ||
| ], | ||
@@ -47,10 +48,7 @@ "main": "lib/index.js", | ||
| "dependencies": { | ||
| "@nuxt/types": ">0.3.0", | ||
| "normalize-path": "^3.0.0", | ||
| "typed-vuex": "0.1.14-alpha.0", | ||
| "vuex": "*" | ||
| "typed-vuex": "0.1.14-alpha.2" | ||
| }, | ||
| "optionalDependencies": { | ||
| "@nuxt/types": "*" | ||
| }, | ||
| "gitHead": "a9c228b86e443fe7a7c4077049fbdbf0a48c7198" | ||
| "gitHead": "20a03014879fcfdfb25e1e414f81667a5d37f25b" | ||
| } |
| {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAA;AAEvB,OAAO,SAAS,MAAM,gBAAgB,CAAA;AAEtC,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,aAAa;IAIzC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE;QACvB,OAAO,CAAC,IAAI,CAAC,uCAAuC,CAAC,CAAA;KACtD;IACD,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,IAAI,EAAE,CAAA;IAC5C,IAAI,CAAC,SAAS,CAAC;QACb,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,aAAa,CAAC;QAC3C,QAAQ,EAAE,oBAAoB;QAC9B,OAAO,EAAE;YACP,KAAK,EAAE,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;SAC/C;KACF,CAAC,CAAA;AACJ,CAAC;AAED,2BAA2B;AAC3B,MAAM,CAAC,MAAM,IAAI,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAE9C,cAAc,YAAY,CAAA"} |
| {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAGA,2BAA2B;AAC3B,MAAM,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAAA;AACvD,2BAA2B;AAC3B,MAAM,EAAE,oBAAoB,EAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CAAA;AAGtD,MAAM,aAAa,GAAG,oBAAoB,CAAC,WAAW,EAAE,CAAC,CAAA;AAEzD,eAAe,KAAK,EAAE,EAAE,KAAK,EAAW,EAAE,MAAc,EAAE,EAAE;IAC1D,MAAM,CAAC,UAAU,EAAE,aAAa,CAAC,KAAK,CAAC,CAAC,CAAA;AAC1C,CAAC,CAAA"} |
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
7870
55.97%3
-25%1
-50%0
-100%7
-22.22%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated