Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remix-i18next

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remix-i18next - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

6

browser/i18next.js

@@ -119,4 +119,8 @@ import { pick } from "accept-language-parser";

get cacheEnabled() {
return (this.options.cacheInDevelopment && process.env.NODE_ENV === "development");
let env = process.env.NODE_ENV;
if (env === "production")
return true;
let { cacheInDevelopment } = this.options;
return cacheInDevelopment !== null && cacheInDevelopment !== void 0 ? cacheInDevelopment : false;
}
}

@@ -122,5 +122,9 @@ "use strict";

get cacheEnabled() {
return (this.options.cacheInDevelopment && process.env.NODE_ENV === "development");
let env = process.env.NODE_ENV;
if (env === "production")
return true;
let { cacheInDevelopment } = this.options;
return cacheInDevelopment !== null && cacheInDevelopment !== void 0 ? cacheInDevelopment : false;
}
}
exports.RemixI18Next = RemixI18Next;

2

package.json
{
"name": "remix-i18next",
"version": "2.1.0",
"version": "2.1.1",
"description": "The easiest way to translate your Remix apps",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc