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

scribe-editor

Package Overview
Dependencies
Maintainers
7
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scribe-editor - npm Package Compare versions

Comparing version 0.1.24 to 0.1.25

setup-tests.sh

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# 0.1.25
* Switch from using export directly to the string alias version. [YUI Compressor changes](https://github.com/guardian/scribe/pull/279)
# 0.1.24
* Rework mandatory plugin loading [Plugin loading](https://github.com/guardian/scribe/pull/275)
# 0.1.23

@@ -2,0 +8,0 @@ * Fix Chrome 38 focus issue [Change check for ff](https://github.com/guardian/scribe/pull/265)

2

package.json
{
"name": "scribe-editor",
"version": "0.1.24",
"version": "0.1.25",
"main": "src/scribe.js",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -36,2 +36,5 @@ define([

callback();
} catch(e) {
// The catch block is required but we don't want to swallow the error
throw e;
} finally {

@@ -38,0 +41,0 @@ // We must yield to let any mutation we caused be triggered

@@ -272,3 +272,3 @@ define([

normalize: [],
export: []
'export': []
};

@@ -292,3 +292,3 @@ }

HTMLFormatterFactory.prototype.formatForExport = function (html) {
return this.formatters.export.reduce(function (formattedData, formatter) {
return this.formatters['export'].reduce(function (formattedData, formatter) {
return formatter(formattedData);

@@ -295,0 +295,0 @@ }, html);

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