@prosopo/vue-procaptcha-wrapper 1.1.39 → 1.1.40

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.
@@ -0,0 +1,35 @@
1
+
2
+ > @prosopo/vue-procaptcha-wrapper@1.1.40 build:cjs
3
+ > NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV
4
+
5
+ ViteCommonJSConfig: .
6
+ {
7
+ tsConfigPaths: [
8
+ '/home/runner/work/captcha/captcha/packages/procaptcha-wrapper/tsconfig.json',
9
+ '/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
10
+ '/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
11
+ '/home/runner/work/captcha/captcha/packages/util/tsconfig.json',
12
+ '/home/runner/work/captcha/captcha/packages/util-crypto/tsconfig.json',
13
+ '/home/runner/work/captcha/captcha/integration/procaptcha-integration-build-config/tsconfig.json'
14
+ ]
15
+ }
16
+ {
17
+ externals: [
18
+ '@prosopo/procaptcha-wrapper',
19
+ '@prosopo/types',
20
+ '@prosopo/locale',
21
+ '@prosopo/util',
22
+ '@prosopo/util-crypto',
23
+ '@prosopo/procaptcha-integration-build-config'
24
+ ]
25
+ }
26
+ vite v6.4.1 building SSR bundle for production...
27
+ Bundle build started
28
+ transforming...
29
+ Build end
30
+ ✓ 3 modules transformed.
31
+ rendering chunks...
32
+ dist/cjs/index.cjs 0.32 kB
33
+ dist/cjs/procaptchaComponent.vue.cjs 0.60 kB
34
+ dist/cjs/procaptchaComponent.vue2.cjs 1.59 kB
35
+ ✓ built in 747ms
@@ -0,0 +1,35 @@
1
+
2
+ > @prosopo/vue-procaptcha-wrapper@1.1.40 build
3
+ > NODE_ENV=${NODE_ENV:-development}; vite build --config vite.esm.config.ts --mode $NODE_ENV
4
+
5
+ ViteEsmConfig: .
6
+ {
7
+ tsConfigPaths: [
8
+ '/home/runner/work/captcha/captcha/packages/procaptcha-wrapper/tsconfig.json',
9
+ '/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
10
+ '/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
11
+ '/home/runner/work/captcha/captcha/packages/util/tsconfig.json',
12
+ '/home/runner/work/captcha/captcha/packages/util-crypto/tsconfig.json',
13
+ '/home/runner/work/captcha/captcha/integration/procaptcha-integration-build-config/tsconfig.json'
14
+ ]
15
+ }
16
+ {
17
+ externals: [
18
+ '@prosopo/procaptcha-wrapper',
19
+ '@prosopo/types',
20
+ '@prosopo/locale',
21
+ '@prosopo/util',
22
+ '@prosopo/util-crypto',
23
+ '@prosopo/procaptcha-integration-build-config'
24
+ ]
25
+ }
26
+ vite v6.4.1 building SSR bundle for production...
27
+ Bundle build started
28
+ transforming...
29
+ Build end
30
+ ✓ 3 modules transformed.
31
+ rendering chunks...
32
+ dist/index.js 0.15 kB
33
+ dist/procaptchaComponent.vue.js 0.41 kB
34
+ dist/procaptchaComponent.vue2.js 1.58 kB
35
+ ✓ built in 853ms
@@ -0,0 +1,4 @@
1
+
2
+ > @prosopo/vue-procaptcha-wrapper@1.1.40 typecheck
3
+ > vue-tsc --project tsconfig.json
4
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @prosopo/vue-procaptcha-wrapper
2
2
 
3
+ ## 1.1.40
4
+ ### Patch Changes
5
+
6
+ - 7d5eb3f: bump
7
+ - Updated dependencies [7d5eb3f]
8
+ - @prosopo/procaptcha-wrapper@2.6.42
9
+
3
10
  ## 1.1.39
4
11
  ### Patch Changes
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosopo/vue-procaptcha-wrapper",
3
- "version": "1.1.39",
3
+ "version": "1.1.40",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^24",
@@ -23,12 +23,12 @@
23
23
  "clean": "del-cli --verbose dist tsconfig.tsbuildinfo"
24
24
  },
25
25
  "dependencies": {
26
- "@prosopo/procaptcha-wrapper": "2.6.41",
26
+ "@prosopo/procaptcha-wrapper": "2.6.42",
27
27
  "vue": "3.5.13"
28
28
  },
29
29
  "devDependencies": {
30
- "@prosopo/config": "3.1.25",
31
- "@prosopo/procaptcha-integration-build-config": "1.1.26",
30
+ "@prosopo/config": "3.1.26",
31
+ "@prosopo/procaptcha-integration-build-config": "1.1.27",
32
32
  "@types/node": "22.10.2",
33
33
  "@vitejs/plugin-vue": "5.2.3",
34
34
  "del-cli": "6.0.0",
package/turbo.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": ["//"],
3
+ "tasks": {
4
+ "build": {
5
+ "dependsOn": ["^build", "^typecheck"]
6
+ },
7
+ "build:cjs": {
8
+ "dependsOn": ["^build:cjs", "^typecheck"]
9
+ }
10
+ }
11
+ }