@pkgr/utils
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.1.3](https://github.com/rx-ts/pkgr/compare/@pkgr/utils@0.1.2...@pkgr/utils@0.1.3) (2019-10-29) | ||
### Bug Fixes | ||
* use tslib for node pkgs as possible, add tsconfig.prod.json support ([ed49383](https://github.com/rx-ts/pkgr/commit/ed49383b1869c7a24ac765a16b3fba2579773dc1)) | ||
## [0.1.2](https://github.com/rx-ts/pkgr/compare/@pkgr/utils@0.1.1...@pkgr/utils@0.1.2) (2019-10-28) | ||
@@ -8,0 +19,0 @@ |
"use strict"; | ||
var __spreadArrays = (this && this.__spreadArrays) || function () { | ||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; | ||
for (var r = Array(s), k = 0, i = 0; i < il; i++) | ||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) | ||
r[k] = a[j]; | ||
return r; | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var chalk_1 = __importDefault(require("chalk")); | ||
var tslib_1 = require("tslib"); | ||
var chalk_1 = tslib_1.__importDefault(require("chalk")); | ||
var child_process_1 = require("child_process"); | ||
var cross_spawn_1 = __importDefault(require("cross-spawn")); | ||
var open_1 = __importDefault(require("open")); | ||
var cross_spawn_1 = tslib_1.__importDefault(require("cross-spawn")); | ||
var open_1 = tslib_1.__importDefault(require("open")); | ||
// https://github.com/sindresorhus/open#app | ||
@@ -51,3 +42,3 @@ var OSX_CHROME = 'google chrome'; | ||
var extraArgs = process.argv.slice(2); | ||
var child = cross_spawn_1.default('node', __spreadArrays([scriptPath], extraArgs, [url]), { | ||
var child = cross_spawn_1.default('node', [scriptPath].concat(extraArgs, [url]), { | ||
stdio: 'inherit', | ||
@@ -54,0 +45,0 @@ }); |
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var fs_1 = __importDefault(require("fs")); | ||
var path_1 = __importDefault(require("path")); | ||
var tslib_1 = require("tslib"); | ||
var fs_1 = tslib_1.__importDefault(require("fs")); | ||
var path_1 = tslib_1.__importDefault(require("path")); | ||
var constants_1 = require("./constants"); | ||
@@ -9,0 +7,0 @@ exports.tryPkg = function (pkg) { |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./browser")); | ||
__export(require("./constants")); | ||
__export(require("./helpers")); | ||
var tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./browser"), exports); | ||
tslib_1.__exportStar(require("./constants"), exports); | ||
tslib_1.__exportStar(require("./helpers"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@pkgr/utils", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Shared utils for `@pkgr` packages or any package else", | ||
@@ -17,3 +17,4 @@ "repository": "git+https://github.com/rx-ts/pkgr.git", | ||
"cross-spawn": "^7.0.1", | ||
"open": "^7.0.0" | ||
"open": "^7.0.0", | ||
"tslib": "^1.10.0" | ||
}, | ||
@@ -24,3 +25,3 @@ "publishConfig": { | ||
"sideEffects": false, | ||
"gitHead": "2a21972a33c7b03afcabd16252afdaae5aec959c" | ||
"gitHead": "2f23f83cd1be278e4dfffd28041d2268c8e74027" | ||
} |
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
18973
4
217
+ Addedtslib@^1.10.0
+ Addedtslib@1.14.1(transitive)