Socket
Socket
Sign inDemoInstall

@ms-cloudpack/config

Package Overview
Dependencies
60
Maintainers
3
Versions
121
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.17.27 to 0.17.28

lib/schemaUrls.d.ts

2

lib/writeGeneratedConfig.js

@@ -5,2 +5,3 @@ import { writeJson } from '@ms-cloudpack/json-utilities';

import { compareOverrides } from './compareOverrides.js';
import { generatedUserConfigSchemaUrl } from './schemaUrls.js';
/**

@@ -17,2 +18,3 @@ * Writes generated config. This is used for `init` to provide package overrides needed.

return writeJson(generatedConfigPath, {
$schema: generatedUserConfigSchemaUrl,
...rest,

@@ -19,0 +21,0 @@ packageSettings: sortedSettings,

import { writeJson } from '@ms-cloudpack/json-utilities';
import { getConfigPath } from './getConfigPath.js';
import { userConfigSchemaUrl } from './schemaUrls.js';
/**

@@ -9,4 +10,7 @@ * Writes updates to the user config. Unlike writing generated config, this does not sort existing package settings,

const { userConfigPath } = getConfigPath(appPath);
return writeJson(userConfigPath, config, { update: true, mode: 'permissive' });
return writeJson(userConfigPath, {
$schema: userConfigSchemaUrl,
...config,
}, { update: true, mode: 'permissive' });
}
//# sourceMappingURL=writeUserConfig.js.map

8

package.json
{
"name": "@ms-cloudpack/config",
"version": "0.17.27",
"version": "0.17.28",
"description": "Configuration handling for cloudpack.",

@@ -17,6 +17,6 @@ "license": "MIT",

"dependencies": {
"@ms-cloudpack/bundler-types": "^0.24.2",
"@ms-cloudpack/config-types": "^0.4.4",
"@ms-cloudpack/bundler-types": "^0.24.3",
"@ms-cloudpack/config-types": "^0.5.0",
"@ms-cloudpack/json-utilities": "^0.1.4",
"@ms-cloudpack/package-utilities": "^5.10.2",
"@ms-cloudpack/package-utilities": "^5.10.3",
"@ms-cloudpack/path-string-parsing": "^1.1.3",

@@ -23,0 +23,0 @@ "merge": "^2.1.1",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc