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.5.0 to 0.5.1

22

lib/allFeatures.d.ts
import type { Feature } from './Feature.js';
/**
* A set of options for configuring the experience. Features can be set to true to change the default
* behavior.
* A set of options for configuring the experience.
* Features can be set to true to change the default behavior.
*/
export declare const allFeatures: {
/** Enables the use of builtin dynamic imports. */
builtinDynamicImports: Feature;
/** Disables the generation of source-maps during build. */
disableSourceMaps: Feature;
/** Enables the preemptive enqueueing of dependencies during build. */
enqueueDependencies: Feature;
/**
* Excludes unused dependencies in the generated config during an init run.
* This helps trim the dependency graph, reduce the import map, and speed up performance.
*/
optimizeDependencies: Feature;
/** Enables React Native type resolution of .web.ts extensions. */
resolveWebExtensions: Feature;
optimizeDependencies: Feature;
/** Enables the syncing of bundles. */
syncBundles: Feature;
/** Use a single server for both bundles and app assets. */
useSingleWebServer: Feature;
/** Enables the verification of exports during init. */
verifyExports: Feature;
syncBundles: Feature;
builtinDynamicImports: Feature;
};
//# sourceMappingURL=allFeatures.d.ts.map
/**
* A set of options for configuring the experience. Features can be set to true to change the default
* behavior.
* A set of options for configuring the experience.
* Features can be set to true to change the default behavior.
*/
export const allFeatures = {
// The comments provide intellisense, and the description strings are used in the help output.
/** Enables the use of builtin dynamic imports. */
builtinDynamicImports: { description: 'Enables the use of builtin dynamic imports.' },
/** Disables the generation of source-maps during build. */
disableSourceMaps: { description: 'Disables the generation of source-maps during build.' },
/** Enables the preemptive enqueueing of dependencies during build. */
enqueueDependencies: { description: 'Enables the preemptive enqueueing of dependencies during build.' },
resolveWebExtensions: { description: 'Enables React Native type resolution of .web.ts extensions.' },
/**
* Excludes unused dependencies in the generated config during an init run.
* This helps trim the dependency graph, reduce the import map, and speed up performance.
*/
optimizeDependencies: {
description: 'Excludes unused dependencies in the generated config during an init run. This helps trim the dependency graph, reduce the import map, and speed up performance.',
},
/** Enables React Native type resolution of .web.ts extensions. */
resolveWebExtensions: { description: 'Enables React Native type resolution of .web.ts extensions.' },
/** Enables the syncing of bundles. */
syncBundles: { description: 'Enables the syncing of bundles.' },
/** Use a single server for both bundles and app assets. */
useSingleWebServer: { description: 'Use a single server for both bundles and app assets.' },
/** Enables the verification of exports during init. */
verifyExports: { description: 'Enables the verification of exports during init.' },
syncBundles: { description: 'Enables the syncing of bundles.' },
builtinDynamicImports: { description: 'Enables the use of builtin dynamic imports.' },
};
//# sourceMappingURL=allFeatures.js.map

@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.

"packageName": "@microsoft/api-extractor",
"packageVersion": "7.39.4"
"packageVersion": "7.43.2"
}
]
}
{
"name": "@ms-cloudpack/common-types",
"version": "0.5.0",
"version": "0.5.1",
"description": "Common types for Cloudpack.",

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

@@ -474,2 +474,5 @@ {

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

@@ -481,9 +484,6 @@ "type": "boolean"

},
"resolveWebExtensions": {
"type": "boolean"
},
"optimizeDependencies": {
"type": "boolean"
},
"verifyExports": {
"resolveWebExtensions": {
"type": "boolean"

@@ -494,4 +494,7 @@ },

},
"builtinDynamicImports": {
"useSingleWebServer": {
"type": "boolean"
},
"verifyExports": {
"type": "boolean"
}

@@ -498,0 +501,0 @@ },

@@ -341,10 +341,5 @@ {

"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "boolean",
"const": false
}
"type": "boolean",
"enum": [
false
]

@@ -640,7 +635,61 @@ },

"LiteralOrString<(\"aix\"|\"darwin\"|\"freebsd\"|\"linux\"|\"openbsd\"|\"sunos\"|\"win32\"|\"!aix\"|\"!darwin\"|\"!freebsd\"|\"!linux\"|\"!openbsd\"|\"!sunos\"|\"!win32\")>": {
"type": "string",
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"aix",
"darwin",
"freebsd",
"linux",
"openbsd",
"sunos",
"win32",
"!aix",
"!darwin",
"!freebsd",
"!linux",
"!openbsd",
"!sunos",
"!win32"
]
}
],
"description": "Union type which has intellisense for specific keys but also allows arbitrary strings. This is a workaround for a [TypeScript issue](https://github.com/Microsoft/TypeScript/issues/29729)"
},
"LiteralOrString<(\"arm\"|\"arm64\"|\"ia32\"|\"mips\"|\"mipsel\"|\"ppc\"|\"ppc64\"|\"s390\"|\"s390x\"|\"x32\"|\"x64\"|\"!arm\"|\"!arm64\"|\"!ia32\"|\"!mips\"|\"!mipsel\"|\"!ppc\"|\"!ppc64\"|\"!s390\"|\"!s390x\"|\"!x32\"|\"!x64\")>": {
"type": "string",
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"arm",
"arm64",
"ia32",
"mips",
"mipsel",
"ppc",
"ppc64",
"s390",
"s390x",
"x32",
"x64",
"!arm",
"!arm64",
"!ia32",
"!mips",
"!mipsel",
"!ppc",
"!ppc64",
"!s390",
"!s390x",
"!x32",
"!x64"
]
}
],
"description": "Union type which has intellisense for specific keys but also allows arbitrary strings. This is a workaround for a [TypeScript issue](https://github.com/Microsoft/TypeScript/issues/29729)"

@@ -647,0 +696,0 @@ }

@@ -475,2 +475,5 @@ {

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

@@ -482,9 +485,6 @@ "type": "boolean"

},
"resolveWebExtensions": {
"type": "boolean"
},
"optimizeDependencies": {
"type": "boolean"
},
"verifyExports": {
"resolveWebExtensions": {
"type": "boolean"

@@ -495,4 +495,7 @@ },

},
"builtinDynamicImports": {
"useSingleWebServer": {
"type": "boolean"
},
"verifyExports": {
"type": "boolean"
}

@@ -499,0 +502,0 @@ },

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