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

@beemo/config-constants

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@beemo/config-constants - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

dts/helpers.d.ts

@@ -13,4 +13,4 @@ import type { ProjectReference } from 'typescript';

export declare function getRootTSConfig(): TSConfigJSON;
export declare function getRootProjectReferences(): ProjectReference[];
export declare function getRootProjectReferences(): ProjectReference[] | undefined;
export {};
//# sourceMappingURL=helpers.d.ts.map

@@ -60,5 +60,3 @@ // Generated with Packemon: https://packemon.dev

function getRootProjectReferences() {
var _getRootTSConfig$refe;
return (_getRootTSConfig$refe = getRootTSConfig().references) != null ? _getRootTSConfig$refe : [];
return getRootTSConfig().references;
}

@@ -65,0 +63,0 @@

{
"name": "@beemo/config-constants",
"version": "0.1.2",
"version": "0.1.3",
"description": "Reusable constants for Beemo configurations.",

@@ -37,3 +37,3 @@ "keywords": [

},
"gitHead": "9be32a5ecc6219939444f0b7c529bc1290b8399b"
"gitHead": "7af9528c944a95919d6cde172a68cf7457754c09"
}

@@ -63,4 +63,4 @@ import type { ProjectReference } from 'typescript';

export function getRootProjectReferences(): ProjectReference[] {
return getRootTSConfig().references ?? [];
export function getRootProjectReferences(): ProjectReference[] | undefined {
return getRootTSConfig().references;
}

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