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

itemsholdr

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itemsholdr - npm Package Compare versions

Comparing version 0.4.0 to 0.4.2

dist/ItemsHoldr.d.ts

16

gulpfile.js

@@ -10,3 +10,3 @@ const gulp = require("gulp");

return gulp
.src("src/*.ts")
.src(["src/**/*.ts", "!src/**/*.d.ts"])
.pipe(tslint())

@@ -33,6 +33,12 @@ .pipe(tslint.report("verbose"));

gulp.task("dist", function() {
const tsResult = gulp
.src("src/**/*.ts")
.pipe(ts());
const tsProject = ts.createProject(
"tsconfig.json",
{
outFile: "dist/ItemsHoldr.js"
});
const tsResult = tsProject
.src()
.pipe(ts(tsProject));
return merge([

@@ -39,0 +45,0 @@ tsResult.dts.pipe(gulp.dest("dist")),

{
"name": "itemsholdr",
"description": "A cache-based wrapper around localStorage.",
"version": "0.4.0",
"version": "0.4.2",
"author": {

@@ -6,0 +6,0 @@ "name": "Josh Goldberg",

@@ -6,2 +6,3 @@ {

"noImplicitAny": true,
"declaration": true,
"outDir": "dist"

@@ -8,0 +9,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