New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

common-fv

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

common-fv - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

1

dist/index.d.ts

@@ -29,2 +29,1 @@ declare const common: {

export default common;
//# sourceMappingURL=index.d.ts.map

6

dist/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const ISSUE_LABELS = {
var ISSUE_LABELS = {
MIGRATION_TASK: "Migration Task",

@@ -28,5 +28,5 @@ MIGRATION_COMPLETED: "Migration Completed",

};
const common = {
ISSUE_LABELS,
var common = {
ISSUE_LABELS: ISSUE_LABELS,
};
exports.default = common;
{
"name": "common-fv",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

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

{
// Change this to match your project
"include": ["src/**/*"],
// We don't need to transpile these directories
"exclude": ["node_modules", "dist"],
"compilerOptions": {
// Tells TypeScript to read JS files, as
// normally they are ignored as source files
"allowJs": true,
// Generate d.ts files
"declaration": true,
// This compiler run should
// only output d.ts files
"emitDeclarationOnly": false,
// Types should go into this directory.
// Removing this would place the .d.ts files
// next to the .js files
"outDir": "dist",
// go to js file when using IDE functions like
// "Go to Definition" in VSCode
"declarationMap": true,
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"module": "commonjs",
"target": "ES6"
}
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true
},
"include": ["src"],
"exclude": ["node_modules"]
}
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