Socket
Socket
Sign inDemoInstall

@dynatrace/devkit

Package Overview
Dependencies
12
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.0 to 0.3.1

lib/index.js.map

12

lib/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
/**

@@ -17,14 +19,4 @@ * @license

*/
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const migrationExports = require("./src/migrations");
const typescriptExports = require("./src/typescript");
const portfinderExports = require("./src/portfinder");
module.exports = {
...migrationExports,
...typescriptExports,
...portfinderExports,
};
(0, tslib_1.__exportStar)(require("./src/migrations"), exports);
(0, tslib_1.__exportStar)(require("./src/typescript"), exports);
(0, tslib_1.__exportStar)(require("./src/portfinder"), exports);

@@ -84,3 +84,6 @@ "use strict";

catch (error) {
if (error.message.includes(options?.errorMessage ?? 'EADDRINUSE')) {
if ((options?.errorMessage &&
error.message.includes(options?.errorMessage)) ||
error.message.includes('EADDRINUSE') ||
error.message.includes('EACCES')) {
if (options?.onUsedCallback) {

@@ -87,0 +90,0 @@ options.onUsedCallback(port);

{
"name": "@dynatrace/devkit",
"version": "0.3.0",
"version": "0.3.1",
"license": "Apache-2.0",
"description": "The Dynatrace App Toolkit utilities for writing and testing migrations.",
"homepage": "https://developer.dynatrace.com/reference/sdks/devkit",
"keywords": [
"Dynatrace AppEngine",
"App Toolkit",
"migration"
],
"typings": "lib/index.d.ts",

@@ -12,5 +19,9 @@ "main": "lib/index.js",

"scripts": {
"build": "tsc -b tsconfig.json",
"build": "rimraf lib && npm run bundle:dev",
"build:ci": "npm run bundle",
"bundle:dev": "npm run bundle -- --dev",
"bundle": "tsc --emitDeclarationOnly && ts-node ../../tooling/bundling/bundle.ts --inFile=./index.ts --outFile=./lib/index.js",
"format": "prettier --write --config ./../../prettier.config.js .",
"lint": "eslint . -c ./.eslintrc.json --ext .ts ",
"cspell": "cspell . -c ../../cspell.json --no-progress",
"test": "jest --config=jest.config.js",

@@ -23,2 +34,3 @@ "test:watch": "jest --watch --config=jest.config.js",

"lodash": "^4.17.20",
"memfs": "^3.2.0",
"micromatch": "^4.0.4",

@@ -29,2 +41,2 @@ "tslib": "^2.0.3",

}
}
}
# @dynatrace/devkit
The Dynatrace App Toolkit utilities for writing and testing migrations. You can find more information about the @dynatrace/devkit in our [`Developer Portal`].
[`developer portal`]: https://developer.dynatrace.com/reference/sdks/devkit/
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc