8000 1.1.1 by aem · Pull Request #29 · aem/docs-soap · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

1.1.1 #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@ docs-soap is a small (1.5kb minified/gzipped), simple library that can be used t

This project was developed for use in a client-side project. To use in a Node environment, your project will also require [jsdom-global](https://www.npmjs.com/package/jsdom-global).

### New in 1.1.0
### New in 1.1.1

* Moving to a webpack build instead of gulp/browserify, resolving webpack's warning about using minified files (#24)
* Moving to CommonJS modules based on my new revelation that the webpack/Babel ESModule implementation is technically incorrect. The side-effect of this is this library no longer supports mixed exports. As such, if you are using `docs-soap` in a CommonJS environment you'll need to switch to importing the library via `require('docs-soap').default`.
* We now suppport non-bundled builds! See the second below on using the package via a CDN. Obviously I recommend a module-bundling system, but I want to support as many people as possible.
* Got rid of the changelog. Just take a look at the release tags if you want a history :)
* The library now refers to a new `lib` directory that contains the sources after flow types have been stripped so consumers who have incompatible build processes can still use the source.

### Exported API
```js
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs-soap",
"version": "1.1.0",
"version": "1.1.1",
"description": "A utility for cleaning Google Docs clipboard content into valid HTML",
"author": "aem <amarkon895@gmail.com>",
"keywords": [
Expand Down
0