Socket
Socket
Sign inDemoInstall

technicalindicators

Package Overview
Dependencies
4
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.20 to 1.0.21

dist/browser.es6.js

3

package.json
{
"name": "technicalindicators",
"version": "1.0.20",
"version": "1.0.21",
"description": "Techincal Indicators written in javascript",

@@ -96,2 +96,3 @@ "main": "dist/index.js",

"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-babel-minify": "^3.1.2",
"rollup-plugin-commonjs": "^8.0.2",

@@ -98,0 +99,0 @@ "rollup-plugin-node-resolve": "^3.0.0",

import { rollup } from 'rollup';
import babel from 'rollup-plugin-babel';
import uglify from 'rollup-plugin-uglify';
import minify from 'rollup-plugin-babel-minify';
var fs = require('fs');

@@ -37,2 +39,19 @@

let bundleES6 = await rollup({
entry: 'index.js',
plugins: [
minify({
comments : false
})
]
});
bundleES6.write({
'banner': '/* APP */',
dest: 'dist/browser.es6.js',
format: 'iife',
moduleName: 'window',
'sourceMap': true
})
let bundleNode = await rollup({

@@ -39,0 +58,0 @@ entry: 'index.js'

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