@nx-tools/core
Advanced tools
Comparing version 1.0.0-alpha.3 to 1.0.0-alpha.4
@@ -7,10 +7,9 @@ { | ||
"license": "MIT", | ||
"version": "1.0.0-alpha.3", | ||
"version": "1.0.0-alpha.4", | ||
"dependencies": { | ||
"@nx-tools/ci": "^1.0.0-alpha.3", | ||
"@actions/exec": "1.0.4" | ||
"@actions/exec": "^1.0.0", | ||
"@nx-tools/ci": "^1.0.0-alpha.4" | ||
}, | ||
"main": "src/index.js", | ||
"typings": "src/index.d.ts", | ||
"peerDependencies": {} | ||
"typings": "src/index.d.ts" | ||
} |
@@ -53,1 +53,2 @@ /** | ||
export declare const asyncForEach: (array: any, callback: any) => Promise<void>; | ||
export declare const parseBoolean: (value?: boolean) => 'true' | 'false' | undefined; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.asyncForEach = exports.endGroup = exports.startGroup = exports.setFailed = exports.info = exports.getInput = exports.ExitCode = void 0; | ||
exports.parseBoolean = exports.asyncForEach = exports.endGroup = exports.startGroup = exports.setFailed = exports.info = exports.getInput = exports.ExitCode = void 0; | ||
const tslib_1 = require("tslib"); | ||
@@ -94,2 +94,3 @@ const ci = require("@nx-tools/ci"); | ||
}); | ||
exports.parseBoolean = (value) => value === undefined ? undefined : value ? 'true' : 'false'; | ||
//# sourceMappingURL=core.js.map |
Sorry, the diff of this file is not supported yet
11081
211
+ Added@actions/exec@1.1.1(transitive)
- Removed@actions/exec@1.0.4(transitive)
Updated@actions/exec@^1.0.0
Updated@nx-tools/ci@^1.0.0-alpha.4