@prosopo/procaptcha-bundle 3.3.0 → 4.1.7

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.
Files changed (93) hide show
  1. package/.turbo/turbo-build$colon$cjs.log +28 -35
  2. package/.turbo/turbo-build$colon$tsc.log +33 -36
  3. package/.turbo/turbo-build.log +29 -36
  4. package/CHANGELOG.md +481 -0
  5. package/dist/cjs/index.cjs +4 -9
  6. package/dist/cjs/util/captcha/captchaRenderer.cjs +10 -9
  7. package/dist/cjs/util/captcha/components/{frictionlessCaptcha.cjs → bundleCaptcha.cjs} +2 -2
  8. package/dist/cjs/util/config.cjs +14 -4
  9. package/dist/cjs/util/widgetFactory.cjs +4 -6
  10. package/dist/components.d.ts +1 -4
  11. package/dist/components.d.ts.map +1 -1
  12. package/dist/components.js +1 -4
  13. package/dist/components.js.map +1 -1
  14. package/dist/index.d.ts.map +1 -1
  15. package/dist/index.js +4 -9
  16. package/dist/index.js.map +1 -1
  17. package/dist/tests/util/config.test.js +6 -6
  18. package/dist/tests/util/config.test.js.map +1 -1
  19. package/dist/tests/util/renderLogic.test.js +22 -14
  20. package/dist/tests/util/renderLogic.test.js.map +1 -1
  21. package/dist/util/captcha/captchaRenderer.d.ts +1 -6
  22. package/dist/util/captcha/captchaRenderer.d.ts.map +1 -1
  23. package/dist/util/captcha/captchaRenderer.js +10 -9
  24. package/dist/util/captcha/captchaRenderer.js.map +1 -1
  25. package/dist/util/captcha/{captchaProps.d.ts → components/bundleCaptcha.d.ts} +4 -3
  26. package/dist/util/captcha/components/bundleCaptcha.d.ts.map +1 -0
  27. package/dist/util/captcha/components/{frictionlessCaptcha.js → bundleCaptcha.js} +2 -2
  28. package/dist/util/captcha/components/bundleCaptcha.js.map +1 -0
  29. package/dist/util/config.d.ts +2 -2
  30. package/dist/util/config.d.ts.map +1 -1
  31. package/dist/util/config.js +14 -4
  32. package/dist/util/config.js.map +1 -1
  33. package/dist/util/widgetFactory.d.ts +1 -1
  34. package/dist/util/widgetFactory.d.ts.map +1 -1
  35. package/dist/util/widgetFactory.js +4 -6
  36. package/dist/util/widgetFactory.js.map +1 -1
  37. package/package.json +12 -12
  38. package/src/components.ts +15 -0
  39. package/src/index.html +11 -0
  40. package/src/index.ts +259 -0
  41. package/src/tests/procaptchaReady.unit.test.ts +58 -0
  42. package/src/tests/util/config.test.ts +97 -0
  43. package/src/tests/util/renderLogic.test.tsx +221 -0
  44. package/src/util/captcha/captchaRenderer.tsx +126 -0
  45. package/src/util/captcha/components/bundleCaptcha.tsx +57 -0
  46. package/src/util/config.ts +40 -0
  47. package/src/util/configCreator.ts +51 -0
  48. package/src/util/language.ts +53 -0
  49. package/src/util/timeout.ts +43 -0
  50. package/src/util/widgetFactory.ts +145 -0
  51. package/src/util/widgetThemeResolver.ts +40 -0
  52. package/tsconfig.cjs.json +35 -0
  53. package/tsconfig.json +42 -0
  54. package/tsconfig.tsbuildinfo +1 -0
  55. package/tsconfig.types.json +9 -0
  56. package/vite.config.ts +18 -1
  57. package/vite.iife.config.ts +119 -0
  58. package/vite.serve.config.ts +17 -0
  59. package/dist/cjs/util/captcha/captchaComponentProvider.cjs +0 -20
  60. package/dist/cjs/util/captcha/captchaComponentsList.cjs +0 -12
  61. package/dist/cjs/util/captcha/captchaType.cjs +0 -12
  62. package/dist/cjs/util/captcha/components/imageCaptcha.cjs +0 -17
  63. package/dist/cjs/util/captcha/components/powCaptcha.cjs +0 -17
  64. package/dist/tests/util/captchaType.test.d.ts +0 -2
  65. package/dist/tests/util/captchaType.test.d.ts.map +0 -1
  66. package/dist/tests/util/captchaType.test.js +0 -36
  67. package/dist/tests/util/captchaType.test.js.map +0 -1
  68. package/dist/util/captcha/captchaComponentProvider.d.ts +0 -8
  69. package/dist/util/captcha/captchaComponentProvider.d.ts.map +0 -1
  70. package/dist/util/captcha/captchaComponentProvider.js +0 -20
  71. package/dist/util/captcha/captchaComponentProvider.js.map +0 -1
  72. package/dist/util/captcha/captchaComponentsList.d.ts +0 -6
  73. package/dist/util/captcha/captchaComponentsList.d.ts.map +0 -1
  74. package/dist/util/captcha/captchaComponentsList.js +0 -12
  75. package/dist/util/captcha/captchaComponentsList.js.map +0 -1
  76. package/dist/util/captcha/captchaProps.d.ts.map +0 -1
  77. package/dist/util/captcha/captchaProps.js +0 -2
  78. package/dist/util/captcha/captchaProps.js.map +0 -1
  79. package/dist/util/captcha/captchaType.d.ts +0 -3
  80. package/dist/util/captcha/captchaType.d.ts.map +0 -1
  81. package/dist/util/captcha/captchaType.js +0 -12
  82. package/dist/util/captcha/captchaType.js.map +0 -1
  83. package/dist/util/captcha/components/frictionlessCaptcha.d.ts +0 -4
  84. package/dist/util/captcha/components/frictionlessCaptcha.d.ts.map +0 -1
  85. package/dist/util/captcha/components/frictionlessCaptcha.js.map +0 -1
  86. package/dist/util/captcha/components/imageCaptcha.d.ts +0 -4
  87. package/dist/util/captcha/components/imageCaptcha.d.ts.map +0 -1
  88. package/dist/util/captcha/components/imageCaptcha.js +0 -17
  89. package/dist/util/captcha/components/imageCaptcha.js.map +0 -1
  90. package/dist/util/captcha/components/powCaptcha.d.ts +0 -4
  91. package/dist/util/captcha/components/powCaptcha.d.ts.map +0 -1
  92. package/dist/util/captcha/components/powCaptcha.js +0 -17
  93. package/dist/util/captcha/components/powCaptcha.js.map +0 -1
@@ -1,81 +1,74 @@
1
1
 
2
- > @prosopo/procaptcha-bundle@3.3.0 build:cjs
2
+ > @prosopo/procaptcha-bundle@4.1.7 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/common/tsconfig.json',
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/util-crypto/tsconfig.json',
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/common',
37
- '@prosopo/locale',
38
- '@prosopo/types',
35
+ '@prosopo/logger',
39
36
  '@prosopo/util',
40
- '@prosopo/util-crypto',
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
  vite v6.4.1 building SSR bundle for production...
61
59
  Bundle build started
62
60
  transforming...
63
61
  Build end
64
- ✓ 14 modules transformed.
62
+ ✓ 9 modules transformed.
65
63
  Entry 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.
66
64
  rendering chunks...
67
- dist/cjs/util/captcha/captchaType.cjs 0.47 kB
68
- dist/cjs/util/captcha/components/powCaptcha.cjs 0.55 kB
69
- dist/cjs/util/captcha/components/imageCaptcha.cjs 0.56 kB
70
- dist/cjs/util/captcha/captchaComponentsList.cjs 0.60 kB
71
- dist/cjs/util/timeout.cjs 0.61 kB
72
- dist/cjs/util/widgetThemeResolver.cjs 0.62 kB
73
- dist/cjs/util/config.cjs 0.67 kB
74
- dist/cjs/util/language.cjs 0.67 kB
75
- dist/cjs/util/captcha/captchaComponentProvider.cjs 0.73 kB
76
- dist/cjs/util/captcha/components/frictionlessCaptcha.cjs 0.85 kB
77
- dist/cjs/util/configCreator.cjs 0.89 kB
78
- dist/cjs/util/captcha/captchaRenderer.cjs 2.24 kB
79
- dist/cjs/util/widgetFactory.cjs 3.08 kB
80
- dist/cjs/index.cjs 5.66 kB
81
- ✓ built in 225ms
65
+ dist/cjs/util/timeout.cjs 0.61 kB
66
+ dist/cjs/util/widgetThemeResolver.cjs 0.62 kB
67
+ dist/cjs/util/language.cjs 0.67 kB
68
+ dist/cjs/util/config.cjs 0.76 kB
69
+ dist/cjs/util/captcha/components/bundleCaptcha.cjs 0.83 kB
70
+ dist/cjs/util/configCreator.cjs 0.89 kB
71
+ dist/cjs/util/captcha/captchaRenderer.cjs 2.16 kB
72
+ dist/cjs/util/widgetFactory.cjs 2.82 kB
73
+ dist/cjs/index.cjs 5.43 kB
74
+ ✓ built in 208ms
@@ -1,83 +1,80 @@
1
1
 
2
- > @prosopo/procaptcha-bundle@3.3.0 build:tsc
2
+ > @prosopo/procaptcha-bundle@4.1.7 build:tsc
3
3
  > tsc --build --verbose
4
4
 
5
- 4:57:44 PM - Projects in this build:
5
+ 8:15:20 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
- * ../api-route/tsconfig.json
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
- 4:57:44 PM - Project '../../dev/config/tsconfig.json' is up to date because newest input '../../dev/config/src/dependencies.ts' is older than output '../../dev/config/tsconfig.tsbuildinfo'
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
+ 8:15:20 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
- 4:57:44 PM - Project '../util/tsconfig.json' is up to date because newest input '../util/src/verifyRecency.ts' is older than output '../util/tsconfig.tsbuildinfo'
33
+ 8:15:20 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
- 4:57:44 PM - 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'
35
+ 8:15:20 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
- 4:57:44 PM - Project '../types/tsconfig.json' is up to date because newest input '../types/src/procaptcha/api.ts' is older than output '../types/tsconfig.tsbuildinfo'
37
+ 8:15:20 AM - Project '../dotenv/tsconfig.json' is up to date because newest input '../dotenv/src/env.ts' is older than output '../dotenv/tsconfig.tsbuildinfo'
41
38
 
42
- 4:57:44 PM - Project '../common/tsconfig.json' is up to date because newest input '../common/src/logger.ts' is older than output '../common/tsconfig.tsbuildinfo'
39
+ 8:15:20 AM - Project '../locale/tsconfig.json' is up to date because newest input '../locale/src/translationKey.ts' is older than output '../locale/tsconfig.tsbuildinfo'
43
40
 
44
- 4:57:44 PM - Project '../dotenv/tsconfig.json' is up to date because newest input '../dotenv/src/env.ts' is older than output '../dotenv/tsconfig.tsbuildinfo'
41
+ 8:15:20 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
- 4:57:44 PM - Project '../detector/tsconfig.json' is up to date because newest input '../detector/src/index.js' is older than output '../detector/tsconfig.tsbuildinfo'
43
+ 8:15:20 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
- 4:57:44 PM - 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'
45
+ 8:15:20 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
- 4:57:44 PM - Project '../api/tsconfig.json' is up to date because newest input '../api/src/index.ts' is older than output '../api/tsconfig.tsbuildinfo'
47
+ 8:15:20 AM - Project '../common/tsconfig.json' is up to date because newest input '../common/src/error.ts' is older than output '../common/tsconfig.tsbuildinfo'
51
48
 
52
- 4:57:44 PM - Project '../widget-skeleton/tsconfig.json' is up to date because newest input '../widget-skeleton/src/constants.ts' is older than output '../widget-skeleton/tsconfig.tsbuildinfo'
49
+ 8:15:20 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
- 4:57:44 PM - Project '../fingerprint/tsconfig.json' is up to date because newest input '../fingerprint/src/index.ts' is older than output '../fingerprint/tsconfig.tsbuildinfo'
51
+ 8:15:20 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
- 4:57:44 PM - Project '../keyring/tsconfig.json' is up to date because newest input '../keyring/src/index.ts' is older than output '../keyring/tsconfig.tsbuildinfo'
53
+ 8:15:20 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
- 4:57:44 PM - Project '../account/tsconfig.json' is up to date because newest input '../account/src/custom.d.ts' is older than output '../account/tsconfig.tsbuildinfo'
55
+ 8:15:20 AM - Project '../fingerprintjs/tsconfig.json' is up to date because newest input '../fingerprintjs/src/sources/webgl.ts' is older than output '../fingerprintjs/tsconfig.tsbuildinfo'
59
56
 
60
- 4:57:44 PM - Project '../procaptcha-common/tsconfig.json' is up to date because newest input '../procaptcha-common/src/state/builder.ts' is older than output '../procaptcha-common/tsconfig.tsbuildinfo'
57
+ 8:15:20 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
- 4:57:44 PM - 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'
59
+ 8:15:21 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
- 4:57:44 PM - Project '../api-route/tsconfig.json' is up to date because newest input '../api-route/src/index.ts' is older than output '../api-route/tsconfig.tsbuildinfo'
61
+ 8:15:21 AM - Project '../account/tsconfig.json' is up to date because newest input '../account/src/workers/cryptoWorker.ts' is older than output '../account/tsconfig.tsbuildinfo'
65
62
 
66
- 4:57:44 PM - Project '../redis-client/tsconfig.json' is up to date because newest input '../redis-client/src/index.ts' is older than output '../redis-client/tsconfig.tsbuildinfo'
63
+ 8:15:21 AM - Project '../procaptcha-common/tsconfig.json' is up to date because newest input '../procaptcha-common/src/reactComponents/Honeypot.tsx' is older than output '../procaptcha-common/tsconfig.tsbuildinfo'
67
64
 
68
- 4:57:44 PM - Project '../user-access-policy/tsconfig.json' is up to date because newest input '../user-access-policy/src/transformRule.ts' is older than output '../user-access-policy/tsconfig.tsbuildinfo'
65
+ 8:15:21 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
- 4:57:45 PM - Project '../types-database/tsconfig.json' is up to date because newest input '../types-database/src/index.ts' is older than output '../types-database/tsconfig.tsbuildinfo'
67
+ 8:15:21 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
- 4:57:45 PM - Project '../datasets/tsconfig.json' is up to date because newest input '../datasets/src/tests/mocks/data/captchas.ts' is older than output '../datasets/tsconfig.tsbuildinfo'
69
+ 8:15:21 AM - Project '../datasets/tsconfig.json' is up to date because newest input '../datasets/src/tests/mocks/data/captchas.ts' is older than output '../datasets/tsconfig.tsbuildinfo'
73
70
 
74
- 4:57:45 PM - Project '../procaptcha/tsconfig.json' is up to date because newest input '../procaptcha/src/index.ts' is older than output '../procaptcha/tsconfig.tsbuildinfo'
71
+ 8:15:21 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
- 4:57:45 PM - 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'
73
+ 8:15:21 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
- 4:57:45 PM - Project '../procaptcha-frictionless/tsconfig.json' is up to date because newest input '../procaptcha-frictionless/src/ProcaptchaFrictionless.tsx' is older than output '../procaptcha-frictionless/tsconfig.tsbuildinfo'
75
+ 8:15:21 AM - Project '../procaptcha-frictionless/tsconfig.json' is up to date because newest input '../procaptcha-frictionless/src/ProcaptchaFrictionless.tsx' is older than output '../procaptcha-frictionless/tsconfig.tsbuildinfo'
79
76
 
80
- 4:57:45 PM - Project 'tsconfig.json' is out of date because output file 'tsconfig.tsbuildinfo' does not exist
77
+ 8:15:21 AM - Project 'tsconfig.json' is out of date because output file 'tsconfig.tsbuildinfo' does not exist
81
78
 
82
- 4:57:45 PM - Building project '/home/runner/work/captcha/captcha/packages/procaptcha-bundle/tsconfig.json'...
79
+ 8:15:21 AM - Building project '/home/runner/work/captcha/captcha/packages/procaptcha-bundle/tsconfig.json'...
83
80
 
@@ -1,84 +1,77 @@
1
1
 
2
- > @prosopo/procaptcha-bundle@3.3.0 build
2
+ > @prosopo/procaptcha-bundle@4.1.7 build
3
3
  > npm run build:cross-env -- --mode ${NODE_ENV:-development}
4
4
 
5
5
 
6
- > @prosopo/procaptcha-bundle@3.3.0 build:cross-env
6
+ > @prosopo/procaptcha-bundle@4.1.7 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/common/tsconfig.json',
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/util-crypto/tsconfig.json',
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/common',
41
- '@prosopo/locale',
42
- '@prosopo/types',
39
+ '@prosopo/logger',
43
40
  '@prosopo/util',
44
- '@prosopo/util-crypto',
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
  vite v6.4.1 building SSR bundle for production...
65
63
  Bundle build started
66
64
  transforming...
67
65
  Build end
68
- ✓ 14 modules transformed.
66
+ ✓ 9 modules transformed.
69
67
  rendering chunks...
70
- dist/util/captcha/captchaType.js 0.36 kB
71
- dist/util/captcha/components/imageCaptcha.js 0.40 kB
72
- dist/util/captcha/components/powCaptcha.js 0.40 kB
73
- dist/util/captcha/captchaComponentsList.js 0.43 kB
74
- dist/util/timeout.js 0.50 kB
75
- dist/util/widgetThemeResolver.js 0.51 kB
76
- dist/util/config.js 0.54 kB
77
- dist/util/language.js 0.57 kB
78
- dist/util/captcha/captchaComponentProvider.js 0.58 kB
79
- dist/util/captcha/components/frictionlessCaptcha.js 0.68 kB
80
- dist/util/configCreator.js 0.81 kB
81
- dist/util/captcha/captchaRenderer.js 2.09 kB
82
- dist/util/widgetFactory.js 2.88 kB
83
- dist/index.js 5.36 kB
84
- ✓ built in 250ms
68
+ dist/util/timeout.js 0.50 kB
69
+ dist/util/widgetThemeResolver.js 0.51 kB
70
+ dist/util/language.js 0.57 kB
71
+ dist/util/config.js 0.63 kB
72
+ dist/util/captcha/components/bundleCaptcha.js 0.66 kB
73
+ dist/util/configCreator.js 0.81 kB
74
+ dist/util/captcha/captchaRenderer.js 1.99 kB
75
+ dist/util/widgetFactory.js 2.65 kB
76
+ dist/index.js 5.19 kB
77
+ ✓ built in 251ms