New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

buildumb

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buildumb - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

CHANGES.rst

8

lib/buildumb.js

@@ -33,5 +33,8 @@ var fs = require('fs')

* config.compress -- compressed output file location (if given)
* config.exposeRequire -- if true, require() will be exported to the global scope
*/
exports.build = function(config) {
config = object.extend({header: '', compress: ''}, config)
config = object.extend({
header: '', compress: '', exposeRequire: false
}, config)

@@ -55,2 +58,5 @@ // Input

}
if (config.exposeRequire) {
exported.push("window['require'] = require")
}

@@ -57,0 +63,0 @@ // Output

26

package.json
{
"name": "buildumb",
"description": "Ultra-dumb exporter of Node.js modules for use in the browser",
"version": "0.1.0",
"author": "Jonathan Buchanan <jonathan.buchanan@gmail.com> (https://github.com/insin)",
"tags": ["build", "export", "browser", "modules"],
"main": "./lib/buildumb",
"repository": {
"type": "git",
"url": "http://github.com/insin/buildumb.git"
},
"dependencies": {
"isomorph": "0.1.x",
"request": "2.9.x"
"name": "buildumb"
, "description": "Ultra-dumb exporter of Node.js modules for use in the browser"
, "version": "0.1.1"
, "author": "Jonathan Buchanan <jonathan.buchanan@gmail.com> (https://github.com/insin)"
, "tags": ["build", "export", "browser", "modules"]
, "main": "./lib/buildumb"
, "repository": {
"type": "git"
, "url": "http://github.com/insin/buildumb.git"
}
, "dependencies": {
"isomorph": "0.1.x"
, "request": "2.9.x"
}
}

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