Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@ngx-pwa/local-storage

Package Overview
Dependencies
5
Maintainers
1
Versions
126
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 13.0.2 to 13.0.3

8

package.json
{
"name": "@ngx-pwa/local-storage",
"version": "13.0.2",
"version": "13.0.3",
"funding": {

@@ -33,5 +33,5 @@ "type": "github",

"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
"@angular/common": ">=13.0.0",
"@angular/core": ">=13.0.0",
"rxjs": ">=6.5.3"
},

@@ -38,0 +38,0 @@ "schematics": "./schematics/collection.json",

@@ -11,11 +11,13 @@ # Async local storage for Angular

## Sponsorship
## Status of this lib
This library is downloaded more than **15 000 times each week**
[on npm](https://www.npmjs.com/package/@ngx-pwa/local-storage),
and my other major open source project, the [Angular schematics extension for VS Code](https://marketplace.visualstudio.com/items?itemName=cyrilletuzi.angular-schematics),
is **used by 500 000 users**. It represents *months* of full time *unpaid* work.
Given my current professional situation and the lack of support for my open source work, this library is in a frozen state, meaning it is still available on npm but it will no longer get features updates or support.
So **please consider to [sponsor](https://github.com/sponsors/cyrilletuzi)** (or ask your company to do so). In addition to support open source, it will grant you access to the **[Schematics Pro](https://www.schematicspro.dev/)** sponsorware, which helps you build optimized and architectured Angular projects in no time.
## How to help?
My open source work represents *months* of full time *unpaid* work, with for example the [Angular schematics extension for VS Code](https://marketplace.visualstudio.com/items?itemName=cyrilletuzi.angular-schematics),
**used by 600 000 developers**.
So if you want to help, I released **[Schematics Pro](https://www.schematicspro.dev)**, a paid code automation tool for Angular, React, Vue, Ionic, Svelte, Stencil, Lit, Nest and more.
## Why this module?

@@ -48,3 +50,3 @@

```bash
# For Angular LTS (Angular >= 10):
# For Angular LTS (Angular >= 12):
ng add @ngx-pwa/local-storage

@@ -222,9 +224,2 @@ ```

### Angular support
We follow [Angular LTS support](https://angular.io/guide/releases).
This module supports [Universal server-side rendering](https://github.com/angular/universal)
via a mock storage.
### Browser support

@@ -231,0 +226,0 @@

@@ -11,13 +11,13 @@ "use strict";

if (!angularMajorVersion) {
context.logger.warn(`Not able to detect @angular/core version. Be aware that Angular versions <= 9 are no longer supported.`);
context.logger.warn(`Not able to detect @angular/core version. Be aware that Angular versions <= 10 are no longer supported.`);
}
if (angularMajorVersion && (angularMajorVersion <= 9)) {
throw new schematics_1.SchematicsException('Angular versions <= 9 are no longer supported.');
if (angularMajorVersion && (angularMajorVersion <= 10)) {
throw new schematics_1.SchematicsException('Angular versions <= 10 are no longer supported.');
}
const rxjsMajorVersion = (0, config_1.getDependencyMajorVersion)('rxjs', host);
if (!rxjsMajorVersion) {
context.logger.warn(`Not able to detect rxjs version. Be aware that rxjs version >= 7.4 is recommended for version 13 of this lib.`);
context.logger.warn(`Not able to detect rxjs version. Be aware that rxjs version >= 7.4 is recommended for Angular >= 13.`);
}
if (angularMajorVersion && rxjsMajorVersion
&& (angularMajorVersion === 13) && (rxjsMajorVersion < 7)) {
&& (angularMajorVersion >= 13) && (rxjsMajorVersion < 7)) {
context.logger.warn(`rxjs should be updated to version >= 7.4. Support for rxjs version 6 is not guaranteed.`);

@@ -24,0 +24,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc