forked from zenoamaro/react-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
publish unbundled ES5 code in '/lib'
- see zenoamaro#162 - restores unbundled "main" from beta-1 and below - adds "browser" to package.json with UMD build - forwards-compatible with adding an ES6 build pipeline - bump version to rc-1 (first release candidate)
- Loading branch information
1 parent
9319d33
commit 61c0527
Showing
4 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,8 @@ | |
|
||
# Compiled files | ||
/dist | ||
/lib | ||
|
||
# Packaging artifacts | ||
/react-quill-*.tgz | ||
/package | ||
/package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,9 @@ Thanks to @clemmy and @alexkrolick for landing this much-awaited change. There a | |
|
||
--- | ||
|
||
🎧 **Latest published package version: `v1.0.0-beta-5`** | ||
🎧 **Latest published package version: `v1.0.0-rc-1`** | ||
Follow React Quill's development on the beta channel leading to `v1.0.0`. | ||
`npm install [email protected]beta-5` | ||
`npm install [email protected]rc-1` | ||
|
||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-quill", | ||
"version": "1.0.0-beta-4", | ||
"version": "1.0.0-rc-1", | ||
"description": "The Quill rich-text editor as a React component.", | ||
"author": "zenoamaro <[email protected]>", | ||
"homepage": "https://github.com/zenoamaro/react-quill", | ||
|
@@ -13,10 +13,13 @@ | |
"type": "git", | ||
"url": "https://github.com/zenoamaro/react-quill.git" | ||
}, | ||
"main": "dist/react-quill.min.js", | ||
"main": "lib/index.js", | ||
"browser": "dist/react-quill.min.js", | ||
"scripts": { | ||
"test": "make test", | ||
"build": "make build" | ||
"build": "make build", | ||
"prepublish": "make build", | ||
"postpublish": "make clean" | ||
}, | ||
"engines": { | ||
"node": ">= 0.8.x" | ||
|
@@ -32,6 +35,7 @@ | |
], | ||
"files": [ | ||
"dist/", | ||
"lib/", | ||
"README.md", | ||
"CHANGELOG.md", | ||
"LICENSE" | ||
|