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

@web/config-loader

Package Overview
Dependencies
Maintainers
7
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/config-loader - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

6

CHANGELOG.md
# @web/config-loader
## 0.1.3
### Patch Changes
- 6e313c18: improve error message
## 0.1.2

@@ -4,0 +10,0 @@

8

dist/index.d.ts

@@ -7,8 +7,4 @@ /**

export function readConfig(name: string, customPath?: string | undefined, basedir?: string | undefined): Promise<any>;
export const ConfigLoaderError: {
new (message?: string | undefined): import("./ConfigLoaderError");
captureStackTrace(targetObject: object, constructorOpt?: Function | undefined): void;
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
stackTraceLimit: number;
};
import ConfigLoaderError = require("./ConfigLoaderError");
export { ConfigLoaderError };
//# sourceMappingURL=index.d.ts.map
{
"name": "@web/config-loader",
"version": "0.1.2",
"version": "0.1.3",
"publishConfig": {

@@ -42,3 +42,3 @@ "access": "public"

"dependencies": {
"semver": "^7.3.2"
"semver": "^7.3.4"
},

@@ -45,0 +45,0 @@ "types": "dist/index.d.ts",

@@ -40,3 +40,3 @@ const semver = require('semver');

throw new ConfigLoaderError(
'You are using CommonJS syntax in a config loaded as es module. ' +
'You are using CommonJS syntax such as "require" or "module.exports" in a config loaded as es module. ' +
'Use import/export syntax, or load the file as a CommonJS module by ' +

@@ -43,0 +43,0 @@ 'using the .cjs file extension or by removing type="module" from your package.json.',

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