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

applugins

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

applugins - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

index.jsx

7

gulpfile.js

@@ -13,6 +13,6 @@ var gulp = require('gulp');

var bundler = watchify(browserify('./index.js', {debug: true, standalone:'API'}).transform(babel.configure({
var bundler = watchify(browserify('./index.jsx', {debug: true, standalone:'API'}).transform(babel.configure({
//whitelist: ["regenerator"],
stage: 0//,
//optional:['runtime']
stage: 0,
optional:['runtime']
})));

@@ -58,2 +58,3 @@

gulp.task('test', ['build'], function () {
return gulp.src('test/test.js', {read: false}).pipe($.mocha({reporter: 'dot', require: ['chai']}));

@@ -60,0 +61,0 @@ });

{
"name": "applugins",
"version": "1.0.2",
"version": "1.0.3",
"description": "Simplest modular Application architecture",

@@ -45,3 +45,3 @@ "keywords": [

},
"main": "./build/build.js"
"main": "./index.jsx"
}

@@ -0,6 +1,5 @@

require('babel/register');
global.regeneratorRuntime = require('babel-runtime/regenerator')['default'];
var Applugins = require('../index.jsx');
var Applugins = require('../build/build.js');
var chai = require('chai');

@@ -7,0 +6,0 @@

Sorry, the diff of this file is too big to display

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