You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

tarts

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tarts - npm Package Compare versions

Comparing version

to
1.0.0

dist/tarts.js

12

package.json
{
"name": "tarts",
"version": "0.1.0",
"version": "1.0.0",
"description": "Create tarballs in node or the browser",
"main": "tarts.js",
"main": "dist/tarts.js",
"module": "lib/index.js",

@@ -29,7 +29,7 @@ "repository": {

"devDependencies": {
"rollup": "0.52.1",
"rollup-plugin-buble": "0.18.0",
"rollup-plugin-filesize": "1.5.0",
"rollup-plugin-uglify": "2.0.1"
"rollup": "1.14.6",
"rollup-plugin-buble": "0.19.6",
"rollup-plugin-filesize": "6.1.0",
"rollup-plugin-uglify": "6.0.2"
}
}

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

# Tarts
# 🥧 Tarts

@@ -3,0 +3,0 @@ Create tarballs in node or the browser. `Tarts` is a simple function that takes an array of files and returns a tarball as a `Uint8Array`.

@@ -7,8 +7,9 @@ import buble from 'rollup-plugin-buble'

{
entry: 'lib/index.js',
dest: 'tarts.js',
format: 'umd',
moduleName: 'Tar',
sourceMap: true,
exports: 'default',
input: 'lib/index.js',
output: {
file: 'dist/tarts.js',
format: 'umd',
name: 'Tar',
sourcemap: true
},
plugins: [

@@ -19,11 +20,12 @@ buble(),

}, {
entry: 'lib/index.js',
dest: 'tarts.min.js',
format: 'umd',
moduleName: 'Tar',
sourceMap: true,
exports: 'default',
input: 'lib/index.js',
output: {
file: 'dist/tarts.min.js',
format: 'umd',
name: 'Tar',
sourcemap: true
},
plugins: [
buble(),
uglify({ mangle: true, compress: true }),
uglify.uglify({ mangle: true, compress: true }),
filesize()

@@ -30,0 +32,0 @@ ]