@prosopo/react-procaptcha-integration-demo 1.1.40 → 1.1.44
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/.turbo/turbo-build$colon$cjs.log +2 -2
- package/.turbo/turbo-build.log +7 -3
- package/CHANGELOG.md +26 -0
- package/package.json +6 -5
- package/vite.cjs.config.ts +1 -1
- package/vite.config.ts +1 -1
- package/vite.esm.config.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @prosopo/react-procaptcha-integration-demo@1.1.
|
|
2
|
+
> @prosopo/react-procaptcha-integration-demo@1.1.44 build:cjs
|
|
3
3
|
> NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV
|
|
4
4
|
|
|
5
5
|
▲ [WARNING] The condition "types" here will never be used as it comes after both "import" and "require" [package.json]
|
|
@@ -52,4 +52,4 @@ rendering chunks...
|
|
|
52
52
|
[2mdist/cjs/[22m[36mindex.cjs [39m[1m[2m0.07 kB[22m[1m[22m
|
|
53
53
|
[2mdist/cjs/[22m[36mapp.cjs [39m[1m[2m0.68 kB[22m[1m[22m
|
|
54
54
|
[2mdist/cjs/[22m[36mintegrationDemo.cjs [39m[1m[2m0.72 kB[22m[1m[22m
|
|
55
|
-
[32m✓ built in
|
|
55
|
+
[32m✓ built in 195ms[39m
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
> @prosopo/react-procaptcha-integration-demo@1.1.
|
|
3
|
-
>
|
|
2
|
+
> @prosopo/react-procaptcha-integration-demo@1.1.44 build
|
|
3
|
+
> npm run build:cross-env -- --mode ${NODE_ENV:-development}
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
> @prosopo/react-procaptcha-integration-demo@1.1.44 build:cross-env
|
|
7
|
+
> vite build --config vite.esm.config.ts --mode production
|
|
4
8
|
|
|
5
9
|
▲ [WARNING] The condition "types" here will never be used as it comes after both "import" and "require" [package.json]
|
|
6
10
|
|
|
@@ -52,4 +56,4 @@ rendering chunks...
|
|
|
52
56
|
[2mdist/[22m[36mindex.js [39m[1m[2m0.05 kB[22m[1m[22m
|
|
53
57
|
[2mdist/[22m[36mapp.js [39m[1m[2m0.56 kB[22m[1m[22m
|
|
54
58
|
[2mdist/[22m[36mintegrationDemo.js [39m[1m[2m0.56 kB[22m[1m[22m
|
|
55
|
-
[32m✓ built in
|
|
59
|
+
[32m✓ built in 186ms[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @prosopo/react-procaptcha-integration-demo
|
|
2
2
|
|
|
3
|
+
## 1.1.44
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- 0a38892: feat/cross-os-testing
|
|
7
|
+
- a8faa9a: bump license year
|
|
8
|
+
- 3acc333: Release 3.3.0
|
|
9
|
+
- Updated dependencies [0a38892]
|
|
10
|
+
- Updated dependencies [a8faa9a]
|
|
11
|
+
- Updated dependencies [3acc333]
|
|
12
|
+
- @prosopo/react-procaptcha-wrapper@1.1.44
|
|
13
|
+
|
|
14
|
+
## 1.1.43
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- @prosopo/react-procaptcha-wrapper@1.1.43
|
|
18
|
+
|
|
19
|
+
## 1.1.42
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- @prosopo/react-procaptcha-wrapper@1.1.42
|
|
23
|
+
|
|
24
|
+
## 1.1.41
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- @prosopo/react-procaptcha-wrapper@1.1.41
|
|
28
|
+
|
|
3
29
|
## 1.1.40
|
|
4
30
|
### Patch Changes
|
|
5
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/react-procaptcha-integration-demo",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.44",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "^24",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "
|
|
19
|
+
"build": "npm run build:cross-env -- --mode ${NODE_ENV:-development}",
|
|
20
|
+
"build:cross-env": "vite build --config vite.esm.config.ts",
|
|
20
21
|
"build:cjs": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
|
|
21
22
|
"typecheck": "tsc --project tsconfig.types.json",
|
|
22
23
|
"bundle": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.config.ts --mode $NODE_ENV",
|
|
@@ -24,13 +25,13 @@
|
|
|
24
25
|
"clean": "del-cli --verbose dist tsconfig.tsbuildinfo"
|
|
25
26
|
},
|
|
26
27
|
"dependencies": {
|
|
27
|
-
"@prosopo/react-procaptcha-wrapper": "1.1.
|
|
28
|
+
"@prosopo/react-procaptcha-wrapper": "1.1.44",
|
|
28
29
|
"react": "18.3.1",
|
|
29
30
|
"react-dom": "18.3.1"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
|
-
"@prosopo/config": "3.
|
|
33
|
-
"@prosopo/procaptcha-integration-build-config": "1.1.
|
|
33
|
+
"@prosopo/config": "3.3.0",
|
|
34
|
+
"@prosopo/procaptcha-integration-build-config": "1.1.28",
|
|
34
35
|
"@types/node": "22.10.2",
|
|
35
36
|
"@vitejs/plugin-react": "5.1.0",
|
|
36
37
|
"del-cli": "6.0.0"
|
package/vite.cjs.config.ts
CHANGED
package/vite.config.ts
CHANGED
package/vite.esm.config.ts
CHANGED