Socket
Socket
Sign inDemoInstall

prosemirror-transform

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror-transform - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

dist/index.mjs

6

CHANGELOG.md

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

## 1.2.1 (2019-11-19)
### Bug fixes
The file referred to in the package's `module` field now is compiled down to ES5.
## 1.2.0 (2019-11-08)

@@ -2,0 +8,0 @@

4

package.json
{
"name": "prosemirror-transform",
"version": "1.2.0",
"version": "1.2.1",
"description": "ProseMirror document transformations",
"main": "dist/index.js",
"module": "src/index.js",
"module": "dist/index.mjs",
"license": "MIT",

@@ -8,0 +8,0 @@ "maintainers": [

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

import buble from '@rollup/plugin-buble'
export default {
module.exports = {
input: './src/index.js',
output: {
dir: 'dist',
output: [{
file: 'dist/index.js',
format: 'cjs',
sourcemap: true
},
plugins: [buble()],
}, {
file: 'dist/index.mjs',
format: 'es',
sourcemap: true
}],
plugins: [require('@rollup/plugin-buble')()],
external(id) { return !/^[\.\/]/.test(id) }
}
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