@bigbinary/neeto-editor 1.23.1 → 1.23.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.cjs.js +48 -0
  2. package/package.json +5 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-editor",
3
- "version": "1.23.1",
4
- "main": "./index.js",
3
+ "version": "1.23.3",
4
+ "main": "./index.cjs.js",
5
5
  "module": "./index.js",
6
6
  "types": "./types.d.ts",
7
7
  "description": "neetoEditor is the library that drives the rich text experience in all neeto products built at BigBinary",
@@ -12,7 +12,7 @@
12
12
  "react"
13
13
  ],
14
14
  "files": [
15
- "index.js",
15
+ "index.*",
16
16
  "types.d.ts"
17
17
  ],
18
18
  "author": "BigBinary",
@@ -153,9 +153,10 @@
153
153
  },
154
154
  "scripts": {
155
155
  "start": "yarn storybook",
156
- "build": "NODE_ENV=production rollup -c rollup.config.js",
156
+ "build": "yarn build-storybook",
157
157
  "prepare": "husky install",
158
158
  "storybook": "start-storybook -p 6006",
159
+ "build-bundle": "NODE_ENV=production rollup -c rollup.config.js",
159
160
  "build-storybook": "build-storybook",
160
161
  "serve": "http-server storybook-static"
161
162
  },