Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ts-morph/bootstrap

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ts-morph/bootstrap - npm Package Compare versions

Comparing version 0.9.0 to 0.9.1

dist-deno/ts-morph-bootstrap.js

8

dist/ts-morph-bootstrap.js

@@ -402,3 +402,3 @@ 'use strict';

getCanonicalFileName: fileName => fileName,
getNewLine: () => opts.newLineChar || require("os").EOL,
getNewLine: () => opts.newLineChar || common.runtime.getEndOfLine(),
});

@@ -433,2 +433,8 @@ }

});
Object.defineProperty(exports, 'ResolutionHosts', {
enumerable: true,
get: function () {
return common.ResolutionHosts;
}
});
Object.defineProperty(exports, 'SettingsContainer', {

@@ -435,0 +441,0 @@ enumerable: true,

@@ -139,2 +139,7 @@ import { ts } from "@ts-morph/common";

/** Collection of reusable resolution hosts. */
export declare const ResolutionHosts: {
deno: ResolutionHostFactory;
};
export declare abstract class SettingsContainer<T extends object> {

@@ -141,0 +146,0 @@ protected _settings: T;

12

package.json
{
"name": "@ts-morph/bootstrap",
"version": "0.9.0",
"version": "0.9.1",
"description": "API for getting quickly set up with the TypeScript Compiler API.",

@@ -12,3 +12,5 @@ "keywords": ["typescript", "compiler", "bootstrap"],

"scripts": {
"build": "rimraf dist && yarn rollup && yarn build:declarations",
"build": "yarn build:declarations && yarn build:node && yarn build:deno",
"build:node": "rimraf dist && yarn rollup",
"build:deno": "rimraf dist-deno && yarn rollup --environment BUILD:deno && ts-node scripts/buildDeno.ts",
"build:declarations": "ts-node --compiler ttypescript --project scripts/tsconfig.json --transpile-only scripts/buildDeclarations.ts",

@@ -19,6 +21,6 @@ "test": "cross-env TS_NODE_COMPILER=\"ttypescript\" TS_NODE_TRANSPILE_ONLY=\"true\" mocha",

"test:ts-versions": "ts-node --transpile-only scripts/test/testTypeScriptVersions",
"rollup": "rollup --config"
"rollup": "rollup -c"
},
"dependencies": {
"@ts-morph/common": "~0.8.0"
"@ts-morph/common": "~0.9.0"
},

@@ -40,3 +42,3 @@ "devDependencies": {

"ttypescript": "^1.5.12",
"typescript": "~4.1.3"
"typescript": "~4.2.2"
},

@@ -43,0 +45,0 @@ "publishConfig": {

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