@prosopo/vue-procaptcha-wrapper 1.1.39 → 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.
@@ -0,0 +1,35 @@
1
+
2
+ > @prosopo/vue-procaptcha-wrapper@1.1.44 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 753ms
@@ -0,0 +1,39 @@
1
+
2
+ > @prosopo/vue-procaptcha-wrapper@1.1.44 build
3
+ > npm run build:cross-env -- --mode ${NODE_ENV:-development}
4
+
5
+
6
+ > @prosopo/vue-procaptcha-wrapper@1.1.44 build:cross-env
7
+ > vite build --config vite.esm.config.ts --mode production
8
+
9
+ ViteEsmConfig: .
10
+ {
11
+ tsConfigPaths: [
12
+ '/home/runner/work/captcha/captcha/packages/procaptcha-wrapper/tsconfig.json',
13
+ '/home/runner/work/captcha/captcha/packages/types/tsconfig.json',
14
+ '/home/runner/work/captcha/captcha/packages/locale/tsconfig.json',
15
+ '/home/runner/work/captcha/captcha/packages/util/tsconfig.json',
16
+ '/home/runner/work/captcha/captcha/packages/util-crypto/tsconfig.json',
17
+ '/home/runner/work/captcha/captcha/integration/procaptcha-integration-build-config/tsconfig.json'
18
+ ]
19
+ }
20
+ {
21
+ externals: [
22
+ '@prosopo/procaptcha-wrapper',
23
+ '@prosopo/types',
24
+ '@prosopo/locale',
25
+ '@prosopo/util',
26
+ '@prosopo/util-crypto',
27
+ '@prosopo/procaptcha-integration-build-config'
28
+ ]
29
+ }
30
+ vite v6.4.1 building SSR bundle for production...
31
+ Bundle build started
32
+ transforming...
33
+ Build end
34
+ ✓ 3 modules transformed.
35
+ rendering chunks...
36
+ dist/index.js 0.15 kB
37
+ dist/procaptchaComponent.vue.js 0.41 kB
38
+ dist/procaptchaComponent.vue2.js 1.58 kB
39
+ ✓ built in 810ms
@@ -0,0 +1,4 @@
1
+
2
+ > @prosopo/vue-procaptcha-wrapper@1.1.44 typecheck
3
+ > vue-tsc --project tsconfig.json
4
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @prosopo/vue-procaptcha-wrapper
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/procaptcha-wrapper@2.6.46
13
+
14
+ ## 1.1.43
15
+ ### Patch Changes
16
+
17
+ - @prosopo/procaptcha-wrapper@2.6.45
18
+
19
+ ## 1.1.42
20
+ ### Patch Changes
21
+
22
+ - @prosopo/procaptcha-wrapper@2.6.44
23
+
24
+ ## 1.1.41
25
+ ### Patch Changes
26
+
27
+ - e01227b: add turbo
28
+ - @prosopo/procaptcha-wrapper@2.6.43
29
+
30
+ ## 1.1.40
31
+ ### Patch Changes
32
+
33
+ - 7d5eb3f: bump
34
+ - Updated dependencies [7d5eb3f]
35
+ - @prosopo/procaptcha-wrapper@2.6.42
36
+
3
37
  ## 1.1.39
4
38
  ### Patch Changes
5
39
 
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.44",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^24",
@@ -16,19 +16,20 @@
16
16
  }
17
17
  },
18
18
  "scripts": {
19
- "build": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
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": "vue-tsc --project tsconfig.json",
22
23
  "bundle": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.config.ts --mode $NODE_ENV",
23
24
  "clean": "del-cli --verbose dist tsconfig.tsbuildinfo"
24
25
  },
25
26
  "dependencies": {
26
- "@prosopo/procaptcha-wrapper": "2.6.41",
27
+ "@prosopo/procaptcha-wrapper": "2.6.46",
27
28
  "vue": "3.5.13"
28
29
  },
29
30
  "devDependencies": {
30
- "@prosopo/config": "3.1.25",
31
- "@prosopo/procaptcha-integration-build-config": "1.1.26",
31
+ "@prosopo/config": "3.3.0",
32
+ "@prosopo/procaptcha-integration-build-config": "1.1.28",
32
33
  "@types/node": "22.10.2",
33
34
  "@vitejs/plugin-vue": "5.2.3",
34
35
  "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
+ }
@@ -1,5 +1,5 @@
1
1
  import path from "node:path";
2
- // Copyright 2021-2025 Prosopo (UK) Ltd.
2
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
3
3
  //
4
4
  // Licensed under the Apache License, Version 2.0 (the "License");
5
5
  // you may not use this file except in compliance with the License.
package/vite.config.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2021-2025 Prosopo (UK) Ltd.
1
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- // Copyright 2021-2025 Prosopo (UK) Ltd.
1
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.