Socket
Socket
Sign inDemoInstall

@hubspot/cms-lib

Package Overview
Dependencies
Maintainers
8
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hubspot/cms-lib - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

2

fileMapper.js

@@ -13,3 +13,3 @@ const fs = require('fs-extra');

formData: {
file: fs.createReadStream(path.resolve(process.cwd(), src)),
file: fs.createReadStream(path.resolve(process.env.INIT_CWD, src)),
},

@@ -16,0 +16,0 @@ });

@@ -23,2 +23,7 @@ const yaml = require('js-yaml');

config = yaml.safeLoad(fs.readFileSync(configPath));
if (!config) {
config = {
portals: [],
};
}
};

@@ -76,2 +81,3 @@

env: environment.toUpperCase(),
portalId,
authType,

@@ -85,3 +91,7 @@ auth,

} else {
config.portals.push(nextPortalConfig);
if (config.portals) {
config.portals.push(nextPortalConfig);
} else {
config.portals = [nextPortalConfig];
}
}

@@ -88,0 +98,0 @@ writeConfig();

{
"name": "@hubspot/cms-lib",
"version": "0.0.12",
"version": "0.0.13",
"description": "Library for working with the HubSpot CMS",

@@ -23,3 +23,3 @@ "license": "Apache-2.0",

},
"gitHead": "33053f6dfc16ad40508544697b2f45f0a6b39a9f"
"gitHead": "6efa49006ea4ac81e854cfc02de2577d653ac1e8"
}
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