Socket
Socket
Sign inDemoInstall

@ms-cloudpack/common-types

Package Overview
Dependencies
Maintainers
3
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ms-cloudpack/common-types - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

4

lib/allFeatures.d.ts

@@ -7,4 +7,2 @@ import type { Feature } from './Feature.js';

export declare const allFeatures: {
/** Enables the use of builtin dynamic imports. */
evaluateDynamicImports: Feature;
/** Disables the generation of source-maps during build. */

@@ -14,2 +12,4 @@ disableSourceMaps: Feature;

enqueueDependencies: Feature;
/** Check for dynamic (async) imports with non-literal paths in bundle output during init. */
evaluateDynamicImports: Feature;
/**

@@ -16,0 +16,0 @@ * Excludes unused dependencies in the generated config during an init run.

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

// The comments provide intellisense, and the description strings are used in the help output.
/** Enables the use of builtin dynamic imports. */
evaluateDynamicImports: { description: 'Enables the use of builtin dynamic imports.' },
/** Disables the generation of source-maps during build. */

@@ -14,2 +12,6 @@ disableSourceMaps: { description: 'Disables the generation of source-maps during build.' },

enqueueDependencies: { description: 'Enables the preemptive enqueueing of dependencies during build.' },
/** Check for dynamic (async) imports with non-literal paths in bundle output during init. */
evaluateDynamicImports: {
description: 'Check for dynamic (async) imports with non-literal paths in bundle output during init.',
},
/**

@@ -16,0 +18,0 @@ * Excludes unused dependencies in the generated config during an init run.

@@ -51,7 +51,17 @@ /**

/**
* Paths to files that include dynamic imports. These are used by ori to determine which files should be
* processed by the dynamic-imports plugin.
* Only relevant for packages bundled with rollup: globs of files that include dynamic (async)
* imports with non-literal paths, to be processed by `@rollup/plugin-dynamic-import-vars` (subject to
* that plugin's [limitations](https://www.npmjs.com/package/\@rollup/plugin-dynamic-import-vars#limitations)).
* Files matching `*.dynamic.*` are automatically included.
*
* This is not needed for ori/esbuild and webpack because they should handle these types of imports automatically.
*/
dynamicImports?: string[];
/**
* Suppress these warning messages from the bundler (partial string matches).
* This is intended for non-actionable messages from external dependencies which can't easily
* be fixed, to avoid confusing users.
*/
ignoredBundlerWarnings?: string[];
/**
* If specific settings are required to pass through to the specific bundler, they can be specified here are are

@@ -58,0 +68,0 @@ * expected to be merged in by the plugin. Specifying bundler-specific overrides is not recommended, as it locks

@@ -65,7 +65,17 @@ import type { PackageJsonExports } from './PackageJson.js';

/**
* Paths to files that include dynamic imports. These are used by ori to determine which files should be
* processed by the dynamic-imports plugin.
* Only relevant for packages bundled with rollup: globs of files that include dynamic (async)
* imports with non-literal paths, to be processed by `@rollup/plugin-dynamic-import-vars` (subject to
* that plugin's [limitations](https://www.npmjs.com/package/\@rollup/plugin-dynamic-import-vars#limitations)).
* Files matching `*.dynamic.*` are automatically included.
*
* This is not needed for ori/esbuild and webpack because they should handle these types of imports automatically.
*/
dynamicImports?: string[];
/**
* Ignore these warning messages from the bundler (partial string matches).
* This is intended for non-actionable messages from external dependencies which can't easily
* be fixed, to avoid confusing users.
*/
ignoredBundlerWarnings?: string[];
}
//# sourceMappingURL=PackageSettings.d.ts.map
{
"name": "@ms-cloudpack/common-types",
"version": "0.6.1",
"version": "0.6.2",
"description": "Common types for Cloudpack.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -526,5 +526,2 @@ {

"properties": {
"evaluateDynamicImports": {
"type": "boolean"
},
"disableSourceMaps": {

@@ -536,2 +533,5 @@ "type": "boolean"

},
"evaluateDynamicImports": {
"type": "boolean"
},
"optimizeDependencies": {

@@ -654,3 +654,10 @@ "type": "boolean"

},
"description": "Paths to files that include dynamic imports. These are used by ori to determine which files should be processed by the dynamic-imports plugin."
"description": "Only relevant for packages bundled with rollup: globs of files that include dynamic (async) imports with non-literal paths, to be processed by `@rollup/plugin-dynamic-import-vars` (subject to that plugin's [limitations](https://www.npmjs.com/package/\\@rollup/plugin-dynamic-import-vars#limitations)). Files matching `*.dynamic.*` are automatically included.\n\nThis is not needed for ori/esbuild and webpack because they should handle these types of imports automatically."
},
"ignoredBundlerWarnings": {
"type": "array",
"items": {
"type": "string"
},
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users."
}

@@ -657,0 +664,0 @@ },

@@ -118,3 +118,10 @@ {

},
"description": "Paths to files that include dynamic imports. These are used by ori to determine which files should be processed by the dynamic-imports plugin."
"description": "Only relevant for packages bundled with rollup: globs of files that include dynamic (async) imports with non-literal paths, to be processed by `@rollup/plugin-dynamic-import-vars` (subject to that plugin's [limitations](https://www.npmjs.com/package/\\@rollup/plugin-dynamic-import-vars#limitations)). Files matching `*.dynamic.*` are automatically included.\n\nThis is not needed for ori/esbuild and webpack because they should handle these types of imports automatically."
},
"ignoredBundlerWarnings": {
"type": "array",
"items": {
"type": "string"
},
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users."
}

@@ -121,0 +128,0 @@ },

@@ -527,5 +527,2 @@ {

"properties": {
"evaluateDynamicImports": {
"type": "boolean"
},
"disableSourceMaps": {

@@ -537,2 +534,5 @@ "type": "boolean"

},
"evaluateDynamicImports": {
"type": "boolean"
},
"optimizeDependencies": {

@@ -655,3 +655,10 @@ "type": "boolean"

},
"description": "Paths to files that include dynamic imports. These are used by ori to determine which files should be processed by the dynamic-imports plugin."
"description": "Only relevant for packages bundled with rollup: globs of files that include dynamic (async) imports with non-literal paths, to be processed by `@rollup/plugin-dynamic-import-vars` (subject to that plugin's [limitations](https://www.npmjs.com/package/\\@rollup/plugin-dynamic-import-vars#limitations)). Files matching `*.dynamic.*` are automatically included.\n\nThis is not needed for ori/esbuild and webpack because they should handle these types of imports automatically."
},
"ignoredBundlerWarnings": {
"type": "array",
"items": {
"type": "string"
},
"description": "Ignore these warning messages from the bundler (partial string matches). This is intended for non-actionable messages from external dependencies which can't easily be fixed, to avoid confusing users."
}

@@ -658,0 +665,0 @@ },

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

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