@prosopo/procaptcha-bundle 3.3.0 → 4.1.8
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 +28 -35
- package/.turbo/turbo-build$colon$tsc.log +33 -36
- package/.turbo/turbo-build.log +29 -36
- package/CHANGELOG.md +489 -0
- package/dist/cjs/index.cjs +4 -9
- package/dist/cjs/util/captcha/captchaRenderer.cjs +10 -9
- package/dist/cjs/util/captcha/components/{frictionlessCaptcha.cjs → bundleCaptcha.cjs} +2 -2
- package/dist/cjs/util/config.cjs +14 -4
- package/dist/cjs/util/widgetFactory.cjs +4 -6
- package/dist/components.d.ts +1 -4
- package/dist/components.d.ts.map +1 -1
- package/dist/components.js +1 -4
- package/dist/components.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -9
- package/dist/index.js.map +1 -1
- package/dist/tests/util/config.test.js +6 -6
- package/dist/tests/util/config.test.js.map +1 -1
- package/dist/tests/util/renderLogic.test.js +22 -14
- package/dist/tests/util/renderLogic.test.js.map +1 -1
- package/dist/util/captcha/captchaRenderer.d.ts +1 -6
- package/dist/util/captcha/captchaRenderer.d.ts.map +1 -1
- package/dist/util/captcha/captchaRenderer.js +10 -9
- package/dist/util/captcha/captchaRenderer.js.map +1 -1
- package/dist/util/captcha/{captchaProps.d.ts → components/bundleCaptcha.d.ts} +4 -3
- package/dist/util/captcha/components/bundleCaptcha.d.ts.map +1 -0
- package/dist/util/captcha/components/{frictionlessCaptcha.js → bundleCaptcha.js} +2 -2
- package/dist/util/captcha/components/bundleCaptcha.js.map +1 -0
- package/dist/util/config.d.ts +2 -2
- package/dist/util/config.d.ts.map +1 -1
- package/dist/util/config.js +14 -4
- package/dist/util/config.js.map +1 -1
- package/dist/util/widgetFactory.d.ts +1 -1
- package/dist/util/widgetFactory.d.ts.map +1 -1
- package/dist/util/widgetFactory.js +4 -6
- package/dist/util/widgetFactory.js.map +1 -1
- package/package.json +12 -12
- package/src/components.ts +15 -0
- package/src/index.html +11 -0
- package/src/index.ts +259 -0
- package/src/tests/procaptchaReady.unit.test.ts +58 -0
- package/src/tests/util/config.test.ts +97 -0
- package/src/tests/util/renderLogic.test.tsx +221 -0
- package/src/util/captcha/captchaRenderer.tsx +126 -0
- package/src/util/captcha/components/bundleCaptcha.tsx +57 -0
- package/src/util/config.ts +40 -0
- package/src/util/configCreator.ts +51 -0
- package/src/util/language.ts +53 -0
- package/src/util/timeout.ts +43 -0
- package/src/util/widgetFactory.ts +145 -0
- package/src/util/widgetThemeResolver.ts +40 -0
- package/tsconfig.cjs.json +35 -0
- package/tsconfig.json +42 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/tsconfig.types.json +9 -0
- package/vite.config.ts +18 -1
- package/vite.iife.config.ts +119 -0
- package/vite.serve.config.ts +17 -0
- package/dist/cjs/util/captcha/captchaComponentProvider.cjs +0 -20
- package/dist/cjs/util/captcha/captchaComponentsList.cjs +0 -12
- package/dist/cjs/util/captcha/captchaType.cjs +0 -12
- package/dist/cjs/util/captcha/components/imageCaptcha.cjs +0 -17
- package/dist/cjs/util/captcha/components/powCaptcha.cjs +0 -17
- package/dist/tests/util/captchaType.test.d.ts +0 -2
- package/dist/tests/util/captchaType.test.d.ts.map +0 -1
- package/dist/tests/util/captchaType.test.js +0 -36
- package/dist/tests/util/captchaType.test.js.map +0 -1
- package/dist/util/captcha/captchaComponentProvider.d.ts +0 -8
- package/dist/util/captcha/captchaComponentProvider.d.ts.map +0 -1
- package/dist/util/captcha/captchaComponentProvider.js +0 -20
- package/dist/util/captcha/captchaComponentProvider.js.map +0 -1
- package/dist/util/captcha/captchaComponentsList.d.ts +0 -6
- package/dist/util/captcha/captchaComponentsList.d.ts.map +0 -1
- package/dist/util/captcha/captchaComponentsList.js +0 -12
- package/dist/util/captcha/captchaComponentsList.js.map +0 -1
- package/dist/util/captcha/captchaProps.d.ts.map +0 -1
- package/dist/util/captcha/captchaProps.js +0 -2
- package/dist/util/captcha/captchaProps.js.map +0 -1
- package/dist/util/captcha/captchaType.d.ts +0 -3
- package/dist/util/captcha/captchaType.d.ts.map +0 -1
- package/dist/util/captcha/captchaType.js +0 -12
- package/dist/util/captcha/captchaType.js.map +0 -1
- package/dist/util/captcha/components/frictionlessCaptcha.d.ts +0 -4
- package/dist/util/captcha/components/frictionlessCaptcha.d.ts.map +0 -1
- package/dist/util/captcha/components/frictionlessCaptcha.js.map +0 -1
- package/dist/util/captcha/components/imageCaptcha.d.ts +0 -4
- package/dist/util/captcha/components/imageCaptcha.d.ts.map +0 -1
- package/dist/util/captcha/components/imageCaptcha.js +0 -17
- package/dist/util/captcha/components/imageCaptcha.js.map +0 -1
- package/dist/util/captcha/components/powCaptcha.d.ts +0 -4
- package/dist/util/captcha/components/powCaptcha.d.ts.map +0 -1
- package/dist/util/captcha/components/powCaptcha.js +0 -17
- package/dist/util/captcha/components/powCaptcha.js.map +0 -1
|
@@ -1,81 +1,74 @@
|
|
|
1
1
|
|
|
2
|
-
> @prosopo/procaptcha-bundle@
|
|
2
|
+
> @prosopo/procaptcha-bundle@4.1.8 build:cjs
|
|
3
3
|
> NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV
|
|
4
4
|
|
|
5
5
|
ViteCommonJSConfig: .
|
|
6
6
|
{
|
|
7
7
|
tsConfigPaths: [
|
|
8
8
|
'/home/runner/work/captcha/captcha/packages/dotenv/tsconfig.json',
|
|
9
|
-
'/home/runner/work/captcha/captcha/packages/
|
|
10
|
-
'/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
|
|
11
|
-
'/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
|
|
9
|
+
'/home/runner/work/captcha/captcha/packages/logger/tsconfig.json',
|
|
12
10
|
'/home/runner/work/captcha/captcha/packages/util/tsconfig.json',
|
|
13
|
-
'/home/runner/work/captcha/captcha/packages/
|
|
11
|
+
'/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
|
|
14
12
|
'/home/runner/work/captcha/captcha/packages/procaptcha-frictionless/tsconfig.json',
|
|
15
13
|
'/home/runner/work/captcha/captcha/packages/detector/tsconfig.json',
|
|
14
|
+
'/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
|
|
15
|
+
'/home/runner/work/captcha/captcha/packages/util-crypto/tsconfig.json',
|
|
16
16
|
'/home/runner/work/captcha/captcha/packages/load-balancer/tsconfig.json',
|
|
17
|
+
'/home/runner/work/captcha/captcha/packages/common/tsconfig.json',
|
|
17
18
|
'/home/runner/work/captcha/captcha/packages/procaptcha-pow/tsconfig.json',
|
|
18
19
|
'/home/runner/work/captcha/captcha/packages/api/tsconfig.json',
|
|
19
20
|
'/home/runner/work/captcha/captcha/packages/procaptcha-common/tsconfig.json',
|
|
20
21
|
'/home/runner/work/captcha/captcha/packages/widget-skeleton/tsconfig.json',
|
|
21
22
|
'/home/runner/work/captcha/captcha/packages/account/tsconfig.json',
|
|
22
23
|
'/home/runner/work/captcha/captcha/packages/fingerprint/tsconfig.json',
|
|
24
|
+
'/home/runner/work/captcha/captcha/packages/fingerprintjs/tsconfig.json',
|
|
23
25
|
'/home/runner/work/captcha/captcha/packages/keyring/tsconfig.json',
|
|
26
|
+
'/home/runner/work/captcha/captcha/packages/procaptcha-puzzle/tsconfig.json',
|
|
24
27
|
'/home/runner/work/captcha/captcha/packages/procaptcha-react/tsconfig.json',
|
|
25
28
|
'/home/runner/work/captcha/captcha/packages/procaptcha/tsconfig.json',
|
|
26
|
-
'/home/runner/work/captcha/captcha/packages/datasets/tsconfig.json'
|
|
27
|
-
'/home/runner/work/captcha/captcha/packages/types-database/tsconfig.json',
|
|
28
|
-
'/home/runner/work/captcha/captcha/packages/user-access-policy/tsconfig.json',
|
|
29
|
-
'/home/runner/work/captcha/captcha/packages/api-route/tsconfig.json',
|
|
30
|
-
'/home/runner/work/captcha/captcha/packages/redis-client/tsconfig.json'
|
|
29
|
+
'/home/runner/work/captcha/captcha/packages/datasets/tsconfig.json'
|
|
31
30
|
]
|
|
32
31
|
}
|
|
33
32
|
{
|
|
34
33
|
externals: [
|
|
35
34
|
'@prosopo/dotenv',
|
|
36
|
-
'@prosopo/
|
|
37
|
-
'@prosopo/locale',
|
|
38
|
-
'@prosopo/types',
|
|
35
|
+
'@prosopo/logger',
|
|
39
36
|
'@prosopo/util',
|
|
40
|
-
'@prosopo/
|
|
37
|
+
'@prosopo/locale',
|
|
41
38
|
'@prosopo/procaptcha-frictionless',
|
|
42
39
|
'@prosopo/detector',
|
|
40
|
+
'@prosopo/types',
|
|
41
|
+
'@prosopo/util-crypto',
|
|
43
42
|
'@prosopo/load-balancer',
|
|
43
|
+
'@prosopo/common',
|
|
44
44
|
'@prosopo/procaptcha-pow',
|
|
45
45
|
'@prosopo/api',
|
|
46
46
|
'@prosopo/procaptcha-common',
|
|
47
47
|
'@prosopo/widget-skeleton',
|
|
48
48
|
'@prosopo/account',
|
|
49
49
|
'@prosopo/fingerprint',
|
|
50
|
+
'@prosopo/fingerprintjs',
|
|
50
51
|
'@prosopo/keyring',
|
|
52
|
+
'@prosopo/procaptcha-puzzle',
|
|
51
53
|
'@prosopo/procaptcha-react',
|
|
52
54
|
'@prosopo/procaptcha',
|
|
53
|
-
'@prosopo/datasets'
|
|
54
|
-
'@prosopo/types-database',
|
|
55
|
-
'@prosopo/user-access-policy',
|
|
56
|
-
'@prosopo/api-route',
|
|
57
|
-
'@prosopo/redis-client'
|
|
55
|
+
'@prosopo/datasets'
|
|
58
56
|
]
|
|
59
57
|
}
|
|
60
58
|
[36mvite v6.4.1 [32mbuilding SSR bundle for production...[36m[39m
|
|
61
59
|
Bundle build started
|
|
62
60
|
transforming...
|
|
63
61
|
Build end
|
|
64
|
-
[32m✓[39m
|
|
62
|
+
[32m✓[39m 9 modules transformed.
|
|
65
63
|
[33mEntry module "src/index.ts" is using named and default exports together. Consumers of your bundle will have to use `..default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.[39m
|
|
66
64
|
rendering chunks...
|
|
67
|
-
[2mdist/cjs/[22m[36mutil/
|
|
68
|
-
[2mdist/cjs/[22m[36mutil/
|
|
69
|
-
[2mdist/cjs/[22m[36mutil/
|
|
70
|
-
[2mdist/cjs/[22m[36mutil/
|
|
71
|
-
[2mdist/cjs/[22m[36mutil/
|
|
72
|
-
[2mdist/cjs/[22m[36mutil/
|
|
73
|
-
[2mdist/cjs/[22m[36mutil/
|
|
74
|
-
[2mdist/cjs/[22m[36mutil/
|
|
75
|
-
[2mdist/cjs/[22m[
|
|
76
|
-
[
|
|
77
|
-
[2mdist/cjs/[22m[36mutil/configCreator.cjs [39m[1m[2m0.89 kB[22m[1m[22m
|
|
78
|
-
[2mdist/cjs/[22m[36mutil/captcha/captchaRenderer.cjs [39m[1m[2m2.24 kB[22m[1m[22m
|
|
79
|
-
[2mdist/cjs/[22m[36mutil/widgetFactory.cjs [39m[1m[2m3.08 kB[22m[1m[22m
|
|
80
|
-
[2mdist/cjs/[22m[36mindex.cjs [39m[1m[2m5.66 kB[22m[1m[22m
|
|
81
|
-
[32m✓ built in 225ms[39m
|
|
65
|
+
[2mdist/cjs/[22m[36mutil/timeout.cjs [39m[1m[2m0.61 kB[22m[1m[22m
|
|
66
|
+
[2mdist/cjs/[22m[36mutil/widgetThemeResolver.cjs [39m[1m[2m0.62 kB[22m[1m[22m
|
|
67
|
+
[2mdist/cjs/[22m[36mutil/language.cjs [39m[1m[2m0.67 kB[22m[1m[22m
|
|
68
|
+
[2mdist/cjs/[22m[36mutil/config.cjs [39m[1m[2m0.76 kB[22m[1m[22m
|
|
69
|
+
[2mdist/cjs/[22m[36mutil/captcha/components/bundleCaptcha.cjs [39m[1m[2m0.83 kB[22m[1m[22m
|
|
70
|
+
[2mdist/cjs/[22m[36mutil/configCreator.cjs [39m[1m[2m0.89 kB[22m[1m[22m
|
|
71
|
+
[2mdist/cjs/[22m[36mutil/captcha/captchaRenderer.cjs [39m[1m[2m2.16 kB[22m[1m[22m
|
|
72
|
+
[2mdist/cjs/[22m[36mutil/widgetFactory.cjs [39m[1m[2m2.82 kB[22m[1m[22m
|
|
73
|
+
[2mdist/cjs/[22m[36mindex.cjs [39m[1m[2m5.43 kB[22m[1m[22m
|
|
74
|
+
[32m✓ built in 168ms[39m
|
|
@@ -1,83 +1,80 @@
|
|
|
1
1
|
|
|
2
|
-
> @prosopo/procaptcha-bundle@
|
|
2
|
+
> @prosopo/procaptcha-bundle@4.1.8 build:tsc
|
|
3
3
|
> tsc --build --verbose
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
10:13:58 AM - Projects in this build:
|
|
6
6
|
* ../../dev/config/tsconfig.json
|
|
7
|
-
* ../locale/tsconfig.json
|
|
8
7
|
* ../util/tsconfig.json
|
|
8
|
+
* ../logger/tsconfig.json
|
|
9
|
+
* ../dotenv/tsconfig.json
|
|
10
|
+
* ../locale/tsconfig.json
|
|
9
11
|
* ../util-crypto/tsconfig.json
|
|
10
12
|
* ../types/tsconfig.json
|
|
11
|
-
* ../common/tsconfig.json
|
|
12
|
-
* ../dotenv/tsconfig.json
|
|
13
13
|
* ../detector/tsconfig.json
|
|
14
|
+
* ../common/tsconfig.json
|
|
14
15
|
* ../load-balancer/tsconfig.json
|
|
15
16
|
* ../api/tsconfig.json
|
|
16
17
|
* ../widget-skeleton/tsconfig.json
|
|
18
|
+
* ../fingerprintjs/tsconfig.json
|
|
17
19
|
* ../fingerprint/tsconfig.json
|
|
18
20
|
* ../keyring/tsconfig.json
|
|
19
21
|
* ../account/tsconfig.json
|
|
20
22
|
* ../procaptcha-common/tsconfig.json
|
|
21
23
|
* ../procaptcha-pow/tsconfig.json
|
|
22
|
-
* ../
|
|
23
|
-
* ../redis-client/tsconfig.json
|
|
24
|
-
* ../user-access-policy/tsconfig.json
|
|
25
|
-
* ../types-database/tsconfig.json
|
|
24
|
+
* ../procaptcha-puzzle/tsconfig.json
|
|
26
25
|
* ../datasets/tsconfig.json
|
|
27
26
|
* ../procaptcha/tsconfig.json
|
|
28
27
|
* ../procaptcha-react/tsconfig.json
|
|
29
28
|
* ../procaptcha-frictionless/tsconfig.json
|
|
30
29
|
* tsconfig.json
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
4:57:44 PM - Project '../locale/tsconfig.json' is up to date because newest input '../locale/src/translationKey.ts' is older than output '../locale/tsconfig.tsbuildinfo'
|
|
31
|
+
10:13:58 AM - Project '../../dev/config/tsconfig.json' is up to date because newest input '../../dev/config/src/webpack/webpack.config.ts' is older than output '../../dev/config/tsconfig.tsbuildinfo'
|
|
35
32
|
|
|
36
|
-
|
|
33
|
+
10:13:58 AM - Project '../util/tsconfig.json' is up to date because newest input '../util/src/url.ts' is older than output '../util/tsconfig.tsbuildinfo'
|
|
37
34
|
|
|
38
|
-
|
|
35
|
+
10:13:58 AM - Project '../logger/tsconfig.json' is up to date because newest input '../logger/src/index.ts' is older than output '../logger/tsconfig.tsbuildinfo'
|
|
39
36
|
|
|
40
|
-
|
|
37
|
+
10:13:58 AM - Project '../dotenv/tsconfig.json' is up to date because newest input '../dotenv/src/index.ts' is older than output '../dotenv/tsconfig.tsbuildinfo'
|
|
41
38
|
|
|
42
|
-
|
|
39
|
+
10:13:58 AM - Project '../locale/tsconfig.json' is up to date because newest input '../locale/src/util.ts' is older than output '../locale/tsconfig.tsbuildinfo'
|
|
43
40
|
|
|
44
|
-
|
|
41
|
+
10:13:58 AM - Project '../util-crypto/tsconfig.json' is up to date because newest input '../util-crypto/src/types.ts' is older than output '../util-crypto/tsconfig.tsbuildinfo'
|
|
45
42
|
|
|
46
|
-
|
|
43
|
+
10:13:58 AM - Project '../types/tsconfig.json' is up to date because newest input '../types/src/procaptcha/api.ts' is older than output '../types/tsconfig.tsbuildinfo'
|
|
47
44
|
|
|
48
|
-
|
|
45
|
+
10:13:58 AM - Project '../detector/tsconfig.json' is up to date because newest input '../detector/src/index.d.ts' is older than output '../detector/tsconfig.tsbuildinfo'
|
|
49
46
|
|
|
50
|
-
|
|
47
|
+
10:13:58 AM - Project '../common/tsconfig.json' is up to date because newest input '../common/src/index.ts' is older than output '../common/tsconfig.tsbuildinfo'
|
|
51
48
|
|
|
52
|
-
|
|
49
|
+
10:13:58 AM - Project '../load-balancer/tsconfig.json' is up to date because newest input '../load-balancer/src/balancer.ts' is older than output '../load-balancer/tsconfig.tsbuildinfo'
|
|
53
50
|
|
|
54
|
-
|
|
51
|
+
10:13:58 AM - Project '../api/tsconfig.json' is up to date because newest input '../api/src/index.ts' is older than output '../api/tsconfig.tsbuildinfo'
|
|
55
52
|
|
|
56
|
-
|
|
53
|
+
10:13:58 AM - Project '../widget-skeleton/tsconfig.json' is up to date because newest input '../widget-skeleton/src/webComponent/createWidget.ts' is older than output '../widget-skeleton/tsconfig.tsbuildinfo'
|
|
57
54
|
|
|
58
|
-
|
|
55
|
+
10:13:58 AM - Project '../fingerprintjs/tsconfig.json' is up to date because newest input '../fingerprintjs/src/utils/browser.ts' is older than output '../fingerprintjs/tsconfig.tsbuildinfo'
|
|
59
56
|
|
|
60
|
-
|
|
57
|
+
10:13:58 AM - Project '../fingerprint/tsconfig.json' is up to date because newest input '../fingerprint/src/index.ts' is older than output '../fingerprint/tsconfig.tsbuildinfo'
|
|
61
58
|
|
|
62
|
-
|
|
59
|
+
10:13:58 AM - Project '../keyring/tsconfig.json' is up to date because newest input '../keyring/src/index.ts' is older than output '../keyring/tsconfig.tsbuildinfo'
|
|
63
60
|
|
|
64
|
-
|
|
61
|
+
10:13:58 AM - Project '../account/tsconfig.json' is up to date because newest input '../account/src/custom.d.ts' is older than output '../account/tsconfig.tsbuildinfo'
|
|
65
62
|
|
|
66
|
-
|
|
63
|
+
10:13:58 AM - Project '../procaptcha-common/tsconfig.json' is up to date because newest input '../procaptcha-common/src/tests/defaultEvents.test.ts' is older than output '../procaptcha-common/tsconfig.tsbuildinfo'
|
|
67
64
|
|
|
68
|
-
|
|
65
|
+
10:13:58 AM - Project '../procaptcha-pow/tsconfig.json' is up to date because newest input '../procaptcha-pow/src/index.ts' is older than output '../procaptcha-pow/tsconfig.tsbuildinfo'
|
|
69
66
|
|
|
70
|
-
|
|
67
|
+
10:13:58 AM - Project '../procaptcha-puzzle/tsconfig.json' is up to date because newest input '../procaptcha-puzzle/src/index.ts' is older than output '../procaptcha-puzzle/tsconfig.tsbuildinfo'
|
|
71
68
|
|
|
72
|
-
|
|
69
|
+
10:13:58 AM - Project '../datasets/tsconfig.json' is up to date because newest input '../datasets/src/index.ts' is older than output '../datasets/tsconfig.tsbuildinfo'
|
|
73
70
|
|
|
74
|
-
|
|
71
|
+
10:13:59 AM - Project '../procaptcha/tsconfig.json' is up to date because newest input '../procaptcha/src/index.ts' is older than output '../procaptcha/tsconfig.tsbuildinfo'
|
|
75
72
|
|
|
76
|
-
|
|
73
|
+
10:13:59 AM - Project '../procaptcha-react/tsconfig.json' is up to date because newest input '../procaptcha-react/src/index.ts' is older than output '../procaptcha-react/tsconfig.tsbuildinfo'
|
|
77
74
|
|
|
78
|
-
|
|
75
|
+
10:13:59 AM - Project '../procaptcha-frictionless/tsconfig.json' is up to date because newest input '../procaptcha-frictionless/src/customDetectBot.ts' is older than output '../procaptcha-frictionless/tsconfig.tsbuildinfo'
|
|
79
76
|
|
|
80
|
-
|
|
77
|
+
10:13:59 AM - Project 'tsconfig.json' is out of date because output file 'tsconfig.tsbuildinfo' does not exist
|
|
81
78
|
|
|
82
|
-
|
|
79
|
+
10:13:59 AM - Building project '/home/runner/work/captcha/captcha/packages/procaptcha-bundle/tsconfig.json'...
|
|
83
80
|
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,84 +1,77 @@
|
|
|
1
1
|
|
|
2
|
-
> @prosopo/procaptcha-bundle@
|
|
2
|
+
> @prosopo/procaptcha-bundle@4.1.8 build
|
|
3
3
|
> npm run build:cross-env -- --mode ${NODE_ENV:-development}
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @prosopo/procaptcha-bundle@
|
|
6
|
+
> @prosopo/procaptcha-bundle@4.1.8 build:cross-env
|
|
7
7
|
> vite build --config vite.esm.config.ts --mode production
|
|
8
8
|
|
|
9
9
|
ViteEsmConfig: .
|
|
10
10
|
{
|
|
11
11
|
tsConfigPaths: [
|
|
12
12
|
'/home/runner/work/captcha/captcha/packages/dotenv/tsconfig.json',
|
|
13
|
-
'/home/runner/work/captcha/captcha/packages/
|
|
14
|
-
'/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
|
|
15
|
-
'/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
|
|
13
|
+
'/home/runner/work/captcha/captcha/packages/logger/tsconfig.json',
|
|
16
14
|
'/home/runner/work/captcha/captcha/packages/util/tsconfig.json',
|
|
17
|
-
'/home/runner/work/captcha/captcha/packages/
|
|
15
|
+
'/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
|
|
18
16
|
'/home/runner/work/captcha/captcha/packages/procaptcha-frictionless/tsconfig.json',
|
|
19
17
|
'/home/runner/work/captcha/captcha/packages/detector/tsconfig.json',
|
|
18
|
+
'/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
|
|
19
|
+
'/home/runner/work/captcha/captcha/packages/util-crypto/tsconfig.json',
|
|
20
20
|
'/home/runner/work/captcha/captcha/packages/load-balancer/tsconfig.json',
|
|
21
|
+
'/home/runner/work/captcha/captcha/packages/common/tsconfig.json',
|
|
21
22
|
'/home/runner/work/captcha/captcha/packages/procaptcha-pow/tsconfig.json',
|
|
22
23
|
'/home/runner/work/captcha/captcha/packages/api/tsconfig.json',
|
|
23
24
|
'/home/runner/work/captcha/captcha/packages/procaptcha-common/tsconfig.json',
|
|
24
25
|
'/home/runner/work/captcha/captcha/packages/widget-skeleton/tsconfig.json',
|
|
25
26
|
'/home/runner/work/captcha/captcha/packages/account/tsconfig.json',
|
|
26
27
|
'/home/runner/work/captcha/captcha/packages/fingerprint/tsconfig.json',
|
|
28
|
+
'/home/runner/work/captcha/captcha/packages/fingerprintjs/tsconfig.json',
|
|
27
29
|
'/home/runner/work/captcha/captcha/packages/keyring/tsconfig.json',
|
|
30
|
+
'/home/runner/work/captcha/captcha/packages/procaptcha-puzzle/tsconfig.json',
|
|
28
31
|
'/home/runner/work/captcha/captcha/packages/procaptcha-react/tsconfig.json',
|
|
29
32
|
'/home/runner/work/captcha/captcha/packages/procaptcha/tsconfig.json',
|
|
30
|
-
'/home/runner/work/captcha/captcha/packages/datasets/tsconfig.json'
|
|
31
|
-
'/home/runner/work/captcha/captcha/packages/types-database/tsconfig.json',
|
|
32
|
-
'/home/runner/work/captcha/captcha/packages/user-access-policy/tsconfig.json',
|
|
33
|
-
'/home/runner/work/captcha/captcha/packages/api-route/tsconfig.json',
|
|
34
|
-
'/home/runner/work/captcha/captcha/packages/redis-client/tsconfig.json'
|
|
33
|
+
'/home/runner/work/captcha/captcha/packages/datasets/tsconfig.json'
|
|
35
34
|
]
|
|
36
35
|
}
|
|
37
36
|
{
|
|
38
37
|
externals: [
|
|
39
38
|
'@prosopo/dotenv',
|
|
40
|
-
'@prosopo/
|
|
41
|
-
'@prosopo/locale',
|
|
42
|
-
'@prosopo/types',
|
|
39
|
+
'@prosopo/logger',
|
|
43
40
|
'@prosopo/util',
|
|
44
|
-
'@prosopo/
|
|
41
|
+
'@prosopo/locale',
|
|
45
42
|
'@prosopo/procaptcha-frictionless',
|
|
46
43
|
'@prosopo/detector',
|
|
44
|
+
'@prosopo/types',
|
|
45
|
+
'@prosopo/util-crypto',
|
|
47
46
|
'@prosopo/load-balancer',
|
|
47
|
+
'@prosopo/common',
|
|
48
48
|
'@prosopo/procaptcha-pow',
|
|
49
49
|
'@prosopo/api',
|
|
50
50
|
'@prosopo/procaptcha-common',
|
|
51
51
|
'@prosopo/widget-skeleton',
|
|
52
52
|
'@prosopo/account',
|
|
53
53
|
'@prosopo/fingerprint',
|
|
54
|
+
'@prosopo/fingerprintjs',
|
|
54
55
|
'@prosopo/keyring',
|
|
56
|
+
'@prosopo/procaptcha-puzzle',
|
|
55
57
|
'@prosopo/procaptcha-react',
|
|
56
58
|
'@prosopo/procaptcha',
|
|
57
|
-
'@prosopo/datasets'
|
|
58
|
-
'@prosopo/types-database',
|
|
59
|
-
'@prosopo/user-access-policy',
|
|
60
|
-
'@prosopo/api-route',
|
|
61
|
-
'@prosopo/redis-client'
|
|
59
|
+
'@prosopo/datasets'
|
|
62
60
|
]
|
|
63
61
|
}
|
|
64
62
|
[36mvite v6.4.1 [32mbuilding SSR bundle for production...[36m[39m
|
|
65
63
|
Bundle build started
|
|
66
64
|
transforming...
|
|
67
65
|
Build end
|
|
68
|
-
[32m✓[39m
|
|
66
|
+
[32m✓[39m 9 modules transformed.
|
|
69
67
|
rendering chunks...
|
|
70
|
-
[2mdist/[22m[36mutil/
|
|
71
|
-
[2mdist/[22m[36mutil/
|
|
72
|
-
[2mdist/[22m[36mutil/
|
|
73
|
-
[2mdist/[22m[36mutil/
|
|
74
|
-
[2mdist/[22m[36mutil/
|
|
75
|
-
[2mdist/[22m[36mutil/
|
|
76
|
-
[2mdist/[22m[36mutil/
|
|
77
|
-
[2mdist/[22m[36mutil/
|
|
78
|
-
[2mdist/[22m[
|
|
79
|
-
[
|
|
80
|
-
[2mdist/[22m[36mutil/configCreator.js [39m[1m[2m0.81 kB[22m[1m[22m
|
|
81
|
-
[2mdist/[22m[36mutil/captcha/captchaRenderer.js [39m[1m[2m2.09 kB[22m[1m[22m
|
|
82
|
-
[2mdist/[22m[36mutil/widgetFactory.js [39m[1m[2m2.88 kB[22m[1m[22m
|
|
83
|
-
[2mdist/[22m[36mindex.js [39m[1m[2m5.36 kB[22m[1m[22m
|
|
84
|
-
[32m✓ built in 250ms[39m
|
|
68
|
+
[2mdist/[22m[36mutil/timeout.js [39m[1m[2m0.50 kB[22m[1m[22m
|
|
69
|
+
[2mdist/[22m[36mutil/widgetThemeResolver.js [39m[1m[2m0.51 kB[22m[1m[22m
|
|
70
|
+
[2mdist/[22m[36mutil/language.js [39m[1m[2m0.57 kB[22m[1m[22m
|
|
71
|
+
[2mdist/[22m[36mutil/config.js [39m[1m[2m0.63 kB[22m[1m[22m
|
|
72
|
+
[2mdist/[22m[36mutil/captcha/components/bundleCaptcha.js [39m[1m[2m0.66 kB[22m[1m[22m
|
|
73
|
+
[2mdist/[22m[36mutil/configCreator.js [39m[1m[2m0.81 kB[22m[1m[22m
|
|
74
|
+
[2mdist/[22m[36mutil/captcha/captchaRenderer.js [39m[1m[2m1.99 kB[22m[1m[22m
|
|
75
|
+
[2mdist/[22m[36mutil/widgetFactory.js [39m[1m[2m2.65 kB[22m[1m[22m
|
|
76
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m5.19 kB[22m[1m[22m
|
|
77
|
+
[32m✓ built in 357ms[39m
|