@rnx-kit/config
Advanced tools
Comparing version 0.4.11 to 0.4.12
@@ -5,6 +5,36 @@ { | ||
{ | ||
"date": "Fri, 29 Oct 2021 08:50:46 GMT", | ||
"date": "Fri, 29 Oct 2021 10:30:28 GMT", | ||
"tag": "@rnx-kit/config_v0.4.12", | ||
"version": "0.4.12", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "beachball", | ||
"package": "@rnx-kit/config", | ||
"comment": "Bump @rnx-kit/console to v1.0.4", | ||
"commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Fri, 29 Oct 2021 09:04:41 GMT", | ||
"tag": "@rnx-kit/config_v0.4.11", | ||
"version": "0.4.11", | ||
"comments": { | ||
"none": [ | ||
{ | ||
"author": "4123478+tido64@users.noreply.github.com", | ||
"package": "@rnx-kit/config", | ||
"commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", | ||
"comment": "Prefer named exports" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Fri, 29 Oct 2021 08:51:30 GMT", | ||
"tag": "@rnx-kit/config_v0.4.11", | ||
"version": "0.4.11", | ||
"comments": { | ||
"patch": [ | ||
@@ -11,0 +41,0 @@ { |
# Change Log - @rnx-kit/config | ||
This log was last generated on Fri, 29 Oct 2021 08:50:46 GMT and should not be manually modified. | ||
This log was last generated on Fri, 29 Oct 2021 10:30:28 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 0.4.12 | ||
Fri, 29 Oct 2021 10:30:28 GMT | ||
### Patches | ||
- Bump @rnx-kit/console to v1.0.4 | ||
## 0.4.11 | ||
Fri, 29 Oct 2021 08:50:46 GMT | ||
Fri, 29 Oct 2021 08:51:30 GMT | ||
@@ -11,0 +19,0 @@ ### Patches |
@@ -5,3 +5,3 @@ import { KitConfig } from "./kitConfig"; | ||
*/ | ||
export interface GetKitConfigOptions { | ||
export declare type GetKitConfigOptions = { | ||
/** | ||
@@ -15,4 +15,4 @@ * Retrieve the kit config options, if they exist, from the specified module. | ||
cwd?: string; | ||
} | ||
}; | ||
export declare function getKitConfig(options?: GetKitConfigOptions): KitConfig | null; | ||
//# sourceMappingURL=getKitConfig.d.ts.map |
@@ -1,8 +0,12 @@ | ||
export * from "./bundleConfig"; | ||
export * from "./getBundleDefinition"; | ||
export * from "./getKitCapabilities"; | ||
export * from "./getKitConfig"; | ||
export * from "./getServerConfig"; | ||
export * from "./kitConfig"; | ||
export * from "./serverConfig"; | ||
export type { BundleConfig, BundleDefinition, BundleParameters, BundleRequiredParameters, BundlerRuntimeParameters, } from "./bundleConfig"; | ||
export { getBundleDefinition, getBundlePlatformDefinition, } from "./getBundleDefinition"; | ||
export type { BundleDefinitionWithRequiredParameters } from "./getBundleDefinition"; | ||
export { getKitCapabilities } from "./getKitCapabilities"; | ||
export type { KitCapabilities } from "./getKitCapabilities"; | ||
export { getKitConfig } from "./getKitConfig"; | ||
export type { GetKitConfigOptions } from "./getKitConfig"; | ||
export { getServerConfig } from "./getServerConfig"; | ||
export type { ServerWithRequiredParameters } from "./getServerConfig"; | ||
export type { Capability, DependencyVersions, GetDependencyVersions, KitConfig, KitType, MetaCapability, } from "./kitConfig"; | ||
export type { ServerRequiredParameters, ServerParameters, ServerConfig, } from "./serverConfig"; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./bundleConfig"), exports); | ||
__exportStar(require("./getBundleDefinition"), exports); | ||
__exportStar(require("./getKitCapabilities"), exports); | ||
__exportStar(require("./getKitConfig"), exports); | ||
__exportStar(require("./getServerConfig"), exports); | ||
__exportStar(require("./kitConfig"), exports); | ||
__exportStar(require("./serverConfig"), exports); | ||
exports.getServerConfig = exports.getKitConfig = exports.getKitCapabilities = exports.getBundlePlatformDefinition = exports.getBundleDefinition = void 0; | ||
var getBundleDefinition_1 = require("./getBundleDefinition"); | ||
Object.defineProperty(exports, "getBundleDefinition", { enumerable: true, get: function () { return getBundleDefinition_1.getBundleDefinition; } }); | ||
Object.defineProperty(exports, "getBundlePlatformDefinition", { enumerable: true, get: function () { return getBundleDefinition_1.getBundlePlatformDefinition; } }); | ||
var getKitCapabilities_1 = require("./getKitCapabilities"); | ||
Object.defineProperty(exports, "getKitCapabilities", { enumerable: true, get: function () { return getKitCapabilities_1.getKitCapabilities; } }); | ||
var getKitConfig_1 = require("./getKitConfig"); | ||
Object.defineProperty(exports, "getKitConfig", { enumerable: true, get: function () { return getKitConfig_1.getKitConfig; } }); | ||
var getServerConfig_1 = require("./getServerConfig"); | ||
Object.defineProperty(exports, "getServerConfig", { enumerable: true, get: function () { return getServerConfig_1.getServerConfig; } }); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@rnx-kit/config", | ||
"version": "0.4.11", | ||
"version": "0.4.12", | ||
"description": "Define and query information about a kit package", | ||
@@ -16,3 +16,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"@rnx-kit/console": "^1.0.3", | ||
"@rnx-kit/console": "^1.0.4", | ||
"cosmiconfig": "^7.0.0", | ||
@@ -19,0 +19,0 @@ "lodash": "^4.17.21", |
@@ -8,3 +8,3 @@ import path from "path"; | ||
*/ | ||
export interface GetKitConfigOptions { | ||
export type GetKitConfigOptions = { | ||
/** | ||
@@ -19,3 +19,3 @@ * Retrieve the kit config options, if they exist, from the specified module. | ||
cwd?: string; | ||
} | ||
}; | ||
@@ -22,0 +22,0 @@ export function getKitConfig( |
@@ -1,7 +0,37 @@ | ||
export * from "./bundleConfig"; | ||
export * from "./getBundleDefinition"; | ||
export * from "./getKitCapabilities"; | ||
export * from "./getKitConfig"; | ||
export * from "./getServerConfig"; | ||
export * from "./kitConfig"; | ||
export * from "./serverConfig"; | ||
export type { | ||
BundleConfig, | ||
BundleDefinition, | ||
BundleParameters, | ||
BundleRequiredParameters, | ||
BundlerRuntimeParameters, | ||
} from "./bundleConfig"; | ||
export { | ||
getBundleDefinition, | ||
getBundlePlatformDefinition, | ||
} from "./getBundleDefinition"; | ||
export type { BundleDefinitionWithRequiredParameters } from "./getBundleDefinition"; | ||
export { getKitCapabilities } from "./getKitCapabilities"; | ||
export type { KitCapabilities } from "./getKitCapabilities"; | ||
export { getKitConfig } from "./getKitConfig"; | ||
export type { GetKitConfigOptions } from "./getKitConfig"; | ||
export { getServerConfig } from "./getServerConfig"; | ||
export type { ServerWithRequiredParameters } from "./getServerConfig"; | ||
export type { | ||
Capability, | ||
DependencyVersions, | ||
GetDependencyVersions, | ||
KitConfig, | ||
KitType, | ||
MetaCapability, | ||
} from "./kitConfig"; | ||
export type { | ||
ServerRequiredParameters, | ||
ServerParameters, | ||
ServerConfig, | ||
} from "./serverConfig"; |
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
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
176405
2604
Updated@rnx-kit/console@^1.0.4