@bigbinary/neetoui 3.2.6 → 3.2.7

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.
@@ -14,4 +14,11 @@
14
14
  * Licensed under the MIT license.
15
15
  */
16
16
 
17
- /*! For license information please see neeto-icons.js.LICENSE.txt */
17
+ /** @license React v16.14.0
18
+ * react.production.min.js
19
+ *
20
+ * Copyright (c) Facebook, Inc. and its affiliates.
21
+ *
22
+ * This source code is licensed under the MIT license found in the
23
+ * LICENSE file in the root directory of this source tree.
24
+ */
package/package.json CHANGED
@@ -1,9 +1,41 @@
1
1
  {
2
2
  "name": "@bigbinary/neetoui",
3
- "version": "3.2.6",
3
+ "version": "3.2.7",
4
4
  "main": "./index.js",
5
5
  "author": "BigBinary",
6
6
  "license": "MIT",
7
+ "description": "NeetoUI is the library that drives the experience in all Neeto products built at BigBinary",
8
+ "scripts": {
9
+ "start": "NODE_ENV=development webpack-dev-server --open --mode development --config webpack.dev.config.js",
10
+ "build": "NODE_ENV=production webpack --mode production --config webpack.config.js",
11
+ "build-example": "NODE_ENV=production webpack --mode production --config webpack.dev.config.js",
12
+ "prepare": "husky install",
13
+ "test": "jest",
14
+ "storybook": "start-storybook -p 6006",
15
+ "build-storybook": "build-storybook"
16
+ },
17
+ "lint-staged": {
18
+ "lib/**/*.{html,md,js,jsx,json}": [
19
+ "eslint --fix"
20
+ ]
21
+ },
22
+ "dependencies": {
23
+ "@bigbinary/neeto-icons": "^1.8.17",
24
+ "@popperjs/core": "^2.9.2",
25
+ "@reach/auto-id": "^0.15.0",
26
+ "@tippyjs/react": "^4.2.5",
27
+ "antd": "^4.17.1",
28
+ "dayjs": "^1.10.3",
29
+ "framer-motion": "^4.1.17",
30
+ "prop-types": "^15.7.2",
31
+ "raw-loader": "^4.0.2",
32
+ "react-color": "^2.19.3",
33
+ "react-hotkeys-hook": "^3.3.2",
34
+ "react-linkify": "^1.0.0-alpha",
35
+ "react-outside-click-handler": "^1.3.0",
36
+ "react-popper": "^2.2.5",
37
+ "react-router-nav-prompt": "^0.4.1"
38
+ },
7
39
  "devDependencies": {
8
40
  "@babel/core": "^7.11.6",
9
41
  "@babel/preset-env": "^7.14.7",
@@ -63,20 +95,6 @@
63
95
  "webpack-cli": "^4.9.1",
64
96
  "webpack-dev-server": "^4.5.0"
65
97
  },
66
- "lint-staged": {
67
- "lib/**/*.{html,md,js,jsx,json}": [
68
- "eslint --fix"
69
- ]
70
- },
71
- "scripts": {
72
- "start": "NODE_ENV=development webpack-dev-server --open --mode development --config webpack.dev.config.js",
73
- "build": "NODE_ENV=production webpack --mode production --config webpack.config.js",
74
- "build-example": "NODE_ENV=production webpack --mode production --config webpack.dev.config.js",
75
- "prepare": "husky install",
76
- "test": "jest",
77
- "storybook": "start-storybook -p 6006",
78
- "build-storybook": "build-storybook"
79
- },
80
98
  "peerDependencies": {
81
99
  "formik": "^2.2.0",
82
100
  "react": "^16.13.1",
@@ -85,24 +103,6 @@
85
103
  "react-router-nav-prompt": "^0.4.1",
86
104
  "react-toastify": "^8.0.2"
87
105
  },
88
- "dependencies": {
89
- "@bigbinary/neeto-icons": "^1.8.15",
90
- "@popperjs/core": "^2.9.2",
91
- "@reach/auto-id": "^0.15.0",
92
- "@tippyjs/react": "^4.2.5",
93
- "antd": "^4.17.1",
94
- "dayjs": "^1.10.3",
95
- "framer-motion": "^4.1.17",
96
- "prop-types": "^15.7.2",
97
- "raw-loader": "^4.0.2",
98
- "react-color": "^2.19.3",
99
- "react-hotkeys-hook": "^3.3.2",
100
- "react-linkify": "^1.0.0-alpha",
101
- "react-outside-click-handler": "^1.3.0",
102
- "react-popper": "^2.2.5",
103
- "react-router-nav-prompt": "^0.4.1"
104
- },
105
- "description": "NeetoUI is the library that drives the experience in all Neeto products built at BigBinary",
106
106
  "directories": {
107
107
  "lib": "lib"
108
108
  },
package/webpack.config.js CHANGED
@@ -1,5 +1,7 @@
1
1
  const PeerDepsExternalsPlugin = require("@bigbinary/peer-deps-externals-webpack-plugin");
2
2
  const MiniCssExtractPlugin = require("mini-css-extract-plugin");
3
+ const BundleAnalyzerPlugin =
4
+ require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
3
5
  const path = require("path");
4
6
 
5
7
  module.exports = {
@@ -8,7 +10,11 @@ module.exports = {
8
10
  layouts: "./lib/components/layouts/index.js",
9
11
  formik: "./lib/components/formik/index.js",
10
12
  },
11
- plugins: [new MiniCssExtractPlugin(), new PeerDepsExternalsPlugin()],
13
+ plugins: [
14
+ new MiniCssExtractPlugin(),
15
+ new PeerDepsExternalsPlugin(),
16
+ // new BundleAnalyzerPlugin(),
17
+ ],
12
18
  module: {
13
19
  rules: [
14
20
  {