dextuploadx5-react-webpack 0.0.1 → 0.0.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.
- package/README.md +9 -4
- package/package.json +22 -22
package/README.md
CHANGED
|
@@ -27,9 +27,13 @@ production builds, it copies the DX5 files to the path that will be served as
|
|
|
27
27
|
## Installation
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
npm install dextuploadx5-react
|
|
30
|
+
npm install dextuploadx5-react
|
|
31
|
+
npm install -D dextuploadx5-react-webpack webpack
|
|
31
32
|
```
|
|
32
33
|
|
|
34
|
+
Install `dextuploadx5-react-webpack` as a `devDependency` because it is used in
|
|
35
|
+
the Webpack build configuration, not in browser runtime code.
|
|
36
|
+
|
|
33
37
|
## Quick Start
|
|
34
38
|
|
|
35
39
|
```js
|
|
@@ -136,13 +140,14 @@ export default withDEXTUploadX5(baseConfig, {
|
|
|
136
140
|
|
|
137
141
|
| `dextuploadx5-react-webpack` | Minimum `dextuploadx5-react` | Minimum DEXTUploadX5 version |
|
|
138
142
|
| --- | --- | --- |
|
|
139
|
-
| `0.0.
|
|
143
|
+
| `0.0.2` | `0.0.1` | `4.4.0.0 (beta)` |
|
|
140
144
|
|
|
141
145
|
## History
|
|
142
146
|
|
|
143
|
-
### 0.0.
|
|
147
|
+
### 0.0.2
|
|
144
148
|
|
|
145
|
-
-
|
|
149
|
+
- Disabled `injectScripts` temporarily to avoid conflict with `DEXTUploadX5Provider`
|
|
150
|
+
- Updated README and packaging metadata for npm publishing
|
|
146
151
|
|
|
147
152
|
## License
|
|
148
153
|
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dextuploadx5-react-webpack",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "React Webpack helper for dextuploadx5-react (serves DX5 static resources)",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"DEXTSolution",
|
|
8
|
-
"DEXTUploadX5",
|
|
9
|
-
"X5",
|
|
10
|
-
"React",
|
|
11
|
-
"Webpack",
|
|
12
|
-
"dextsolution",
|
|
13
|
-
"dextuploadx5",
|
|
14
|
-
"x5",
|
|
15
|
-
"react",
|
|
16
|
-
"webpack"
|
|
17
|
-
],
|
|
18
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
19
|
-
"homepage": "http://www.dextsolution.com",
|
|
20
|
-
"files": [
|
|
21
|
-
"dist/**"
|
|
22
|
-
],
|
|
1
|
+
{
|
|
2
|
+
"name": "dextuploadx5-react-webpack",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "React Webpack helper for dextuploadx5-react (serves DX5 static resources)",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"DEXTSolution",
|
|
8
|
+
"DEXTUploadX5",
|
|
9
|
+
"X5",
|
|
10
|
+
"React",
|
|
11
|
+
"Webpack",
|
|
12
|
+
"dextsolution",
|
|
13
|
+
"dextuploadx5",
|
|
14
|
+
"x5",
|
|
15
|
+
"react",
|
|
16
|
+
"webpack"
|
|
17
|
+
],
|
|
18
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
19
|
+
"homepage": "http://www.dextsolution.com",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist/**"
|
|
22
|
+
],
|
|
23
23
|
"main": "./dist/index.cjs",
|
|
24
24
|
"exports": {
|
|
25
25
|
".": {
|