Socket
Socket
Sign inDemoInstall

plutonio

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plutonio - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

2

dist/log/index.d.ts

@@ -8,2 +8,2 @@ /**

*/
export declare const ion: import("i0n/dist/class").ION;
export declare const log: import("i0n/dist/class").Ion;

@@ -13,5 +13,5 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.ion = void 0;
exports.log = void 0;
const i0n_1 = __importDefault(require("i0n"));
exports.ion = i0n_1.default.create({});
exports.log = i0n_1.default.create({});
//# sourceMappingURL=index.js.map

@@ -42,2 +42,3 @@ "use strict";

const typescript_1 = __importDefault(require("typescript"));
// import {log} from '../log/index';
const utils = __importStar(require("../utils/index"));

@@ -544,2 +545,6 @@ const t = __importStar(require("./types"));

const primitive = node_type.intrinsicName;
if (!primitive) {
// log.warn(`'intrinsicName' was undefined. Cannot resolve primitive`);
return t.PRIMITIVE.UNRESOLVED;
}
return primitive;

@@ -546,0 +551,0 @@ }

{
"name": "plutonio",
"version": "0.6.1",
"version": "0.6.2",
"description": "A typescript library that scans your typescript project and generate a schema of all types and interfaces of the project.",

@@ -50,5 +50,5 @@ "main": "dist/index.js",

"dependencies": {
"i0n": "^0.6.0",
"i0n": "^0.8.1",
"typescript": "^5.3.3"
}
}

@@ -10,2 +10,2 @@ /**

import i0n from 'i0n';
export const ion = i0n.create({});
export const log = i0n.create({});

@@ -11,2 +11,3 @@ /**

import ts from 'typescript';
// import {log} from '../log/index';
import * as utils from '../utils/index';

@@ -672,2 +673,6 @@ import * as t from './types';

const primitive = (node_type as any).intrinsicName;
if (!primitive) {
// log.warn(`'intrinsicName' was undefined. Cannot resolve primitive`);
return t.PRIMITIVE.UNRESOLVED;
}
return primitive;

@@ -674,0 +679,0 @@ }

Sorry, the diff of this file is not supported yet

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