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

baby-tolk

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baby-tolk - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

3

lib/baby-tolk.js

@@ -47,2 +47,5 @@ 'use strict';

}).forEach(function (adapter) {
if (adapter.engineName === 'babel') {
adapter.extensions = adapter.extensions.concat(['es6', 'babel']);
}
loadedAdapters.push(adapter);

@@ -49,0 +52,0 @@ var extensions = adapter.extensions.map(function (extension) { return '.' + extension; });

@@ -40,3 +40,11 @@ 'use strict';

}
var ug = UglifyJS.minify(compiled.result, options);
var ug;
try {
ug = UglifyJS.minify(compiled.result, options);
} catch (err) {
err.filename = compiled.inputPath;
throw err;
}
// Remove sourceMappingURL comment line

@@ -43,0 +51,0 @@ ug.code = ug.code.substring(0, ug.code.lastIndexOf('\n'));

4

package.json
{
"name": "baby-tolk",
"version": "1.2.0",
"version": "1.3.0",
"description": "A file reader that promises to translate non-web assets to web assets given the available transpilers, sourcemaps and all",

@@ -41,3 +41,3 @@ "main": "lib/baby-tolk.js",

"dependencies": {
"accord": "0.20.3",
"accord": "davej/accord#patch-1-build",
"clean-css": "3.4.6",

@@ -44,0 +44,0 @@ "es6-promise": "3.0.2",

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