Socket
Socket
Sign inDemoInstall

@lingui/conf

Package Overview
Dependencies
Maintainers
3
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lingui/conf - npm Package Compare versions

Comparing version 4.0.0-next.3 to 4.0.0-next.4

20

dist/index.d.ts

@@ -24,20 +24,24 @@ /**

};
type CatalogExtra = Record<string, unknown>;
type MessageOrigin = [filename: string, line?: number];
type ExtractedMessageType = {
type ExtractedMessageType<Extra = CatalogExtra> = {
message?: string;
origin?: MessageOrigin[];
comments?: string[];
extractedComments?: string[];
obsolete?: boolean;
flags?: string[];
context?: string;
/**
* the generic field where
* formatters can store additional data
*/
extra?: Extra;
};
type MessageType = ExtractedMessageType & {
type MessageType<Extra = CatalogExtra> = ExtractedMessageType<Extra> & {
translation: string;
};
type ExtractedCatalogType = {
[msgId: string]: ExtractedMessageType;
type ExtractedCatalogType<Extra = CatalogExtra> = {
[msgId: string]: ExtractedMessageType<Extra>;
};
type CatalogType = {
[msgId: string]: MessageType;
type CatalogType<Extra = CatalogExtra> = {
[msgId: string]: MessageType<Extra>;
};

@@ -44,0 +48,0 @@ type ExtractorType = {

4

package.json
{
"name": "@lingui/conf",
"version": "4.0.0-next.3",
"version": "4.0.0-next.4",
"sideEffects": false,

@@ -45,3 +45,3 @@ "description": "Get lingui configuration from package.json",

},
"gitHead": "29cad1bdcc781994ac4d496e5c4937795423d405"
"gitHead": "3b999e35d26e67dec7cf0591f794be782e11022c"
}

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc