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

quill-delta

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quill-delta - npm Package Compare versions

Comparing version 3.6.3 to 4.0.0

dist/AttributeMap.d.ts

22

CHANGELOG.md

@@ -0,1 +1,12 @@

## v4.0.0
Source rewritten in Typescript
#### Breaking Changes
These were never documented as officially supported but to be safe we are doing a major version bump.
- No longer works in IE8 as there is function called `delete` and IE8 treats that as a reserved identifier
- The source structure has changed so those utilizing NPM's ability to import from arbitrary directories ex. `import DeltaOp from 'quill-delta/lib/op'` will have to update their imports
## v3.6.3

@@ -17,3 +28,2 @@

## v3.5.0

@@ -23,3 +33,2 @@

## v3.4.0

@@ -29,3 +38,2 @@

## v3.3.0

@@ -35,3 +43,2 @@

## v3.2.0

@@ -41,3 +48,2 @@

## v3.1.0

@@ -47,9 +53,8 @@

## v3.0.0
#### Breaking Changes
- Deep copy and compare attributes and deltas
## v2.1.0

@@ -59,9 +64,10 @@

## v2.0.0
#### Breaking Changes
- `compose()` returns a new Delta instead of self-modifying
#### Features
- Support embed being any non-string type
{
"name": "quill-delta",
"version": "3.6.3",
"version": "4.0.0",
"description": "Format for representing rich text documents and changes.",
"author": "Jason Chen <jhchen7@gmail.com>",
"homepage": "https://github.com/quilljs/delta",
"main": "lib/delta.js",
"main": "dist/Delta.js",
"dependencies": {

@@ -14,15 +14,32 @@ "deep-equal": "^1.0.1",

"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/extend": "^3.0.0",
"@types/fast-diff": "^1.1.0",
"coveralls": "^3.0.2",
"istanbul": "~0.4.5",
"jasmine": "^3.1.0"
"jasmine": "^3.2.0",
"prettier": "^1.14.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.0.0"
},
"engines": {
"node": ">=0.10"
},
"files": [
"tsconfig.json",
"dist",
"src"
],
"license": "MIT",
"scripts": {
"test": "jasmine test/*.js test/**/*.js",
"test:coverage": "istanbul cover jasmine test/**/*.js",
"build": "tsc",
"prepare": "npm run build",
"lint": "tslint 'src/**/*.ts'",
"test": "npm run build; jasmine test/*.js test/**/*.js",
"test:coverage": "istanbul cover jasmine test/*.js test/**/*.js",
"test:coverage:report": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"repository": {

@@ -29,0 +46,0 @@ "type": "git",

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