Socket
Socket
Sign inDemoInstall

@aelesia/npm-template

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 0.1.2

8

.eslintrc.json

@@ -9,2 +9,3 @@ {

"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"

@@ -29,5 +30,10 @@ ],

"no-empty": "warn",
"consistent-return": "error",
"@typescript-eslint/explicit-function-return-type": "warn",
"prettier/prettier": "warn"
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "off",
"prettier/prettier": "warn",
"sort-imports": "warn",
"prefer-const": "off"
}
}

2

dist/index.d.ts

@@ -0,2 +1,2 @@

export { some_function, some_class } from './src/Something';
export { default } from './src/Something';
export { some_class, some_function } from './src/Something';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Something_1 = require("./src/Something");
exports.default = Something_1.default;
exports.some_function = Something_1.some_function;
exports.some_class = Something_1.some_class;
var Something_2 = require("./src/Something");
exports.some_class = Something_2.some_class;
exports.some_function = Something_2.some_function;
exports.default = Something_2.default;

@@ -0,2 +1,2 @@

export { some_function, some_class } from './src/Something'
export { default } from './src/Something'
export { some_class, some_function } from './src/Something'
{
"name": "@aelesia/npm-template",
"version": "0.1.1",
"version": "0.1.2",
"description": "Template for NPM packages",

@@ -5,0 +5,0 @@ "author": "",

Sorry, the diff of this file is not supported yet

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