@bigbinary/neeto-editor 0.3.40 → 0.3.43
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.
- package/babel.config.js +1 -1
- package/build/index.js +11 -11
- package/package.json +6 -4
- package/webpack.config.js +1 -0
- package/webpack.dev.config.js +1 -0
- package/craco.config.js +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-editor",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.43",
|
|
4
4
|
"main": "./build/index.js",
|
|
5
5
|
"description": "Neeto Editor is the library that drives the rich text experience in all Neeto products built at BigBinary",
|
|
6
6
|
"keywords": [
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"@babel/preset-react": "^7.13.13",
|
|
64
64
|
"autoprefixer": "^9",
|
|
65
65
|
"babel-loader": "^8.2.2",
|
|
66
|
+
"babel-plugin-ramda": "^2.0.0",
|
|
66
67
|
"css-loader": "^4.3.0",
|
|
67
68
|
"css-minimizer-webpack-plugin": "1.3.0",
|
|
68
69
|
"dotenv": "^10.0.0",
|
|
@@ -83,8 +84,8 @@
|
|
|
83
84
|
"husky": "7.0.4",
|
|
84
85
|
"lint-staged": "^12.4.1",
|
|
85
86
|
"mini-css-extract-plugin": "0.9.0",
|
|
86
|
-
"postcss": "^
|
|
87
|
-
"postcss-import": "^
|
|
87
|
+
"postcss": "^8.4.14",
|
|
88
|
+
"postcss-import": "^14.1.0",
|
|
88
89
|
"postcss-loader": "^4.0.3",
|
|
89
90
|
"postcss-preset-env": "^6.7.0",
|
|
90
91
|
"prettier": "^2.6.1",
|
|
@@ -107,7 +108,8 @@
|
|
|
107
108
|
"scripts": {
|
|
108
109
|
"start": "NODE_ENV=development webpack-dev-server --open --mode development --config webpack.dev.config.js",
|
|
109
110
|
"build": "NODE_ENV=production webpack --config webpack.dev.config.js",
|
|
110
|
-
"webpack-build": "NODE_ENV=production webpack --mode production"
|
|
111
|
+
"webpack-build": "NODE_ENV=production webpack --mode production",
|
|
112
|
+
"prepare": "husky install"
|
|
111
113
|
},
|
|
112
114
|
"lint-staged": {
|
|
113
115
|
"{lib,example}/**/*.{js,jsx,json}": [
|
package/webpack.config.js
CHANGED
package/webpack.dev.config.js
CHANGED