@pplancq/react-template 1.3.0 → 1.4.0
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/.env +8 -7
- package/CHANGELOG.md +13 -0
- package/package.json +10 -10
package/.env
CHANGED
|
@@ -12,25 +12,26 @@
|
|
|
12
12
|
# /!\ DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE OR ANY VERSIONED FILE. /!\
|
|
13
13
|
|
|
14
14
|
# Enables/disables launching the browser when npm start is run.
|
|
15
|
-
# Default is false
|
|
15
|
+
# Default is false
|
|
16
16
|
#BROWSER=false
|
|
17
17
|
|
|
18
18
|
# Sets the port for the development web server.
|
|
19
|
-
# Default is 3000
|
|
19
|
+
# Default is 3000
|
|
20
20
|
#PORT=3000
|
|
21
21
|
|
|
22
22
|
# Allows you to deactivate the stylelint plugin
|
|
23
23
|
# Default is false
|
|
24
24
|
#DISABLE_STYLELINT_PLUGIN=false
|
|
25
25
|
|
|
26
|
-
#
|
|
26
|
+
# Allows you to deactivate the eslint plugin
|
|
27
27
|
# Default is false
|
|
28
28
|
#DISABLE_ESLINT_PLUGIN=false
|
|
29
29
|
|
|
30
|
+
# Allows you to deactivate the sourcemap
|
|
31
|
+
# Default is false
|
|
32
|
+
#DISABLE_SOURCE_MAP=false
|
|
33
|
+
|
|
30
34
|
# Sets the prefix for environment variables that will be passed to the frontend.
|
|
31
35
|
# Access environment variables using import.meta.env.FRONT_FOO in the code.
|
|
32
|
-
# Default is FRONT_
|
|
36
|
+
# Default is FRONT_
|
|
33
37
|
#ENV_PREFIX=FRONT_
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## @pplancq/react-template [1.4.0](https://github.com/pplancq/dev-tools/compare/@pplancq/react-template@1.3.0...@pplancq/react-template@1.4.0) (2024-05-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **webpack-config:** add an environment variable to disable source map generation ([61bf247](https://github.com/pplancq/dev-tools/commit/61bf2476cb59a81d23ac8ade2d370adff58a1730))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Dependencies
|
|
11
|
+
|
|
12
|
+
* **@pplancq/webpack-config:** upgraded to 1.3.0
|
|
13
|
+
|
|
1
14
|
## @pplancq/react-template [1.3.0](https://github.com/pplancq/dev-tools/compare/@pplancq/react-template@1.2.0...@pplancq/react-template@1.3.0) (2024-04-16)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/react-template",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "react template",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@hookform/resolvers": "^3.3.2",
|
|
37
|
-
"@tanstack/react-query": "^5.
|
|
38
|
-
"@tanstack/react-query-devtools": "^5.
|
|
37
|
+
"@tanstack/react-query": "^5.32.1",
|
|
38
|
+
"@tanstack/react-query-devtools": "^5.32.0",
|
|
39
39
|
"react": "^18.2.0",
|
|
40
|
-
"react-dom": "^18.
|
|
40
|
+
"react-dom": "^18.3.1",
|
|
41
41
|
"react-hook-form": "^7.51.3",
|
|
42
|
-
"react-router-dom": "^6.
|
|
42
|
+
"react-router-dom": "^6.23.0",
|
|
43
43
|
"yup": "^1.4.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@commitlint/cli": "^19.
|
|
46
|
+
"@commitlint/cli": "^19.3.0",
|
|
47
47
|
"@pplancq/babel-config": "*",
|
|
48
48
|
"@pplancq/commitlint-config": "*",
|
|
49
49
|
"@pplancq/eslint-config": "*",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"@pplancq/stylelint-config": "*",
|
|
53
53
|
"@pplancq/webpack-config": "*",
|
|
54
54
|
"@testing-library/jest-dom": "^6.1.5",
|
|
55
|
-
"@testing-library/react": "^15.0.
|
|
55
|
+
"@testing-library/react": "^15.0.5",
|
|
56
56
|
"@testing-library/user-event": "^14.5.1",
|
|
57
57
|
"@types/react": "^18.2.79",
|
|
58
|
-
"@types/react-dom": "^18.
|
|
58
|
+
"@types/react-dom": "^18.3.0",
|
|
59
59
|
"@vitejs/plugin-react": "^4.2.1",
|
|
60
|
-
"@vitest/coverage-v8": "^1.5.
|
|
60
|
+
"@vitest/coverage-v8": "^1.5.2",
|
|
61
61
|
"concurrently": "^8.2.2",
|
|
62
62
|
"eslint": "^8.57.0",
|
|
63
63
|
"eslint-plugin-prettier": "^5.1.3",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"jsdom": "^24.0.0",
|
|
66
66
|
"lint-staged": "^15.2.0",
|
|
67
67
|
"prettier": "^3.2.5",
|
|
68
|
-
"stylelint": "^16.
|
|
68
|
+
"stylelint": "^16.4.0",
|
|
69
69
|
"stylelint-prettier": "^5.0.0",
|
|
70
70
|
"tsc-files": "^1.1.4",
|
|
71
71
|
"typescript": "^5.4.5",
|