@luminati-io/uikit 2.0.4-beta.0 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
1
+ /** @license React v16.13.1
2
+ * react-is.production.min.js
3
+ *
4
+ * Copyright (c) Facebook, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uikit.table.umd.min.js","mappings":";AAAA","sources":["webpack://uikit/webpack/universalModuleDefinition"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"react\"), require(\"react-table\"), require(\"styled-components\"), require(\"react-dom\"), require(\"prop-types\"), require(\"react-virtualized\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"react\", \"react-table\", \"styled-components\", \"react-dom\", \"prop-types\", \"react-virtualized\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"uikit\"] = factory(require(\"react\"), require(\"react-table\"), require(\"styled-components\"), require(\"react-dom\"), require(\"prop-types\"), require(\"react-virtualized\"));\n\telse\n\t\troot[\"uikit\"] = factory(root[\"react\"], root[\"react-table\"], root[\"styled-components\"], root[\"react-dom\"], root[\"prop-types\"], root[\"react-virtualized\"]);\n})(this, (__WEBPACK_EXTERNAL_MODULE__8156__, __WEBPACK_EXTERNAL_MODULE__4767__, __WEBPACK_EXTERNAL_MODULE__1608__, __WEBPACK_EXTERNAL_MODULE__7111__, __WEBPACK_EXTERNAL_MODULE__5099__, __WEBPACK_EXTERNAL_MODULE__1296__) => {\nreturn "],"names":[],"sourceRoot":""}
package/package.json CHANGED
@@ -1,18 +1,14 @@
1
1
  {
2
2
  "name": "@luminati-io/uikit",
3
- "version": "2.0.4-beta.0",
3
+ "version": "2.0.4",
4
4
  "author": "Bright Data (http://brightdata.com)",
5
5
  "license": "ISC",
6
6
  "description": "brightdata's design system",
7
- "main": "dist/cjs/index.js",
8
- "module": "dist/esm/index.js",
9
- "jsnext:main": "dist/esm/index.js",
7
+ "main": "./dist/uikit.main.umd.min.js",
10
8
  "exports": {
11
- ".": {
12
- "import": "./dist/esm/index.js",
13
- "default": "./dist/cjs/index.js"
14
- },
15
- "./package.json": "./package.json"
9
+ ".": "./dist/uikit.main.umd.min.js",
10
+ "./chart": "./dist/uikit.chart.umd.min.js",
11
+ "./table": "./dist/uikit.table.umd.min.js"
16
12
  },
17
13
  "files": [
18
14
  "dist"
@@ -48,10 +44,6 @@
48
44
  "@babel/preset-env": "7.20.2",
49
45
  "@babel/preset-react": "7.18.6",
50
46
  "@react-spring/web": "^9.7.2",
51
- "@rollup/plugin-alias": "^5.0.0",
52
- "@rollup/plugin-babel": "^6.0.3",
53
- "@rollup/plugin-commonjs": "^25.0.3",
54
- "@rollup/plugin-node-resolve": "^15.1.0",
55
47
  "@storybook/addon-a11y": "^6.5.16",
56
48
  "@storybook/addon-actions": "^6.5.16",
57
49
  "@storybook/addon-essentials": "^6.5.16",
@@ -81,9 +73,6 @@
81
73
  "react-dom": "^16.9.0",
82
74
  "react-table": "^7.8.0",
83
75
  "react-virtualized": "^9.22.5",
84
- "rollup": "^3.28.0",
85
- "rollup-plugin-peer-deps-external": "^2.2.4",
86
- "rollup-plugin-svg-sprites": "^1.2.5",
87
76
  "styled-components": "^5.3.11",
88
77
  "svg-sprite-loader": "^6.0.11",
89
78
  "svgo": "^3.0.2",
@@ -95,12 +84,12 @@
95
84
  "storybook": "start-storybook -p 6006 -c storybook_config",
96
85
  "build-storybook": "build-storybook -c storybook_config",
97
86
  "test": "test-storybook --verbose -c storybook_config",
98
- "build-rollup": "rollup -c",
99
- "build-webpack": "webpack",
100
- "build": "rm -rf dist&&npm run build-rollup&&npm run build-webpack",
87
+ "build-development": "webpack --config webpack.dev.js",
88
+ "build-production": "webpack --mode=production",
89
+ "build": "rm -rf dist&&npm run build-development&&npm run build-production",
101
90
  "prepublishOnly": "npm run build",
102
91
  "minify-svg": "svgo -i ./assets/icons --final-newline",
103
92
  "dry-publish": "npm publish --access public --dry-run",
104
- "publish-beta": "npm version prerelease --preid beta&&npm publish --tag beta --access public"
93
+ "publish-beta": "npm version prerelease --preid beta&&cvs ci -m 'bump version' package.json package-lock.json&&npm publish --tag beta --access public"
105
94
  }
106
95
  }