@bigbinary/neeto-editor 1.23.0 → 1.23.2

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 -9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-editor",
3
- "version": "1.23.0",
4
- "main": "./index.js",
3
+ "version": "1.23.2",
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,14 +12,9 @@
12
12
  "react"
13
13
  ],
14
14
  "files": [
15
- "index.js",
15
+ "index.*",
16
16
  "types.d.ts"
17
17
  ],
18
- "engines": {
19
- "node": ">=18.12",
20
- "npm": ">=9",
21
- "yarn": ">=1.22"
22
- },
23
18
  "author": "BigBinary",
24
19
  "license": "MIT",
25
20
  "devDependencies": {
@@ -158,9 +153,10 @@
158
153
  },
159
154
  "scripts": {
160
155
  "start": "yarn storybook",
161
- "build": "NODE_ENV=production rollup -c rollup.config.js",
156
+ "build": "yarn build-storybook",
162
157
  "prepare": "husky install",
163
158
  "storybook": "start-storybook -p 6006",
159
+ "build-bundle": "NODE_ENV=production rollup -c rollup.config.js",
164
160
  "build-storybook": "build-storybook",
165
161
  "serve": "http-server storybook-static"
166
162
  },