@prosopo/client-bundle-example 2.10.11 → 2.10.12

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @prosopo/client-bundle-example@2.10.11 build:cjs
2
+ > @prosopo/client-bundle-example@2.10.12 build:cjs
3
3
  > NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV
4
4
 
5
5
  ViteCommonJSConfig: .
@@ -30,4 +30,4 @@ Build end
30
30
  ✓ 1 modules transformed.
31
31
  rendering chunks...
32
32
  dist/cjs/index.cjs 1.62 kB
33
- ✓ built in 144ms
33
+ ✓ built in 146ms
@@ -0,0 +1,32 @@
1
+
2
+ > @prosopo/client-bundle-example@2.10.12 build:tsc
3
+ > tsc --build --verbose
4
+
5
+ 4:57:00 PM - Projects in this build:
6
+ * ../../dev/config/tsconfig.json
7
+ * ../../packages/locale/tsconfig.json
8
+ * ../../packages/util/tsconfig.json
9
+ * ../../packages/util-crypto/tsconfig.json
10
+ * ../../packages/types/tsconfig.json
11
+ * ../../packages/common/tsconfig.json
12
+ * ../../packages/dotenv/tsconfig.json
13
+ * tsconfig.json
14
+
15
+ 4:57:00 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'
16
+
17
+ 4:57:00 PM - Project '../../packages/locale/tsconfig.json' is up to date because newest input '../../packages/locale/src/translationKey.ts' is older than output '../../packages/locale/tsconfig.tsbuildinfo'
18
+
19
+ 4:57:00 PM - Project '../../packages/util/tsconfig.json' is up to date because newest input '../../packages/util/src/verifyRecency.ts' is older than output '../../packages/util/tsconfig.tsbuildinfo'
20
+
21
+ 4:57:00 PM - Project '../../packages/util-crypto/tsconfig.json' is up to date because newest input '../../packages/util-crypto/src/types.ts' is older than output '../../packages/util-crypto/tsconfig.tsbuildinfo'
22
+
23
+ 4:57:00 PM - Project '../../packages/types/tsconfig.json' is up to date because newest input '../../packages/types/src/procaptcha/api.ts' is older than output '../../packages/types/tsconfig.tsbuildinfo'
24
+
25
+ 4:57:00 PM - Project '../../packages/common/tsconfig.json' is up to date because newest input '../../packages/common/src/logger.ts' is older than output '../../packages/common/tsconfig.tsbuildinfo'
26
+
27
+ 4:57:00 PM - Project '../../packages/dotenv/tsconfig.json' is up to date because newest input '../../packages/dotenv/src/env.ts' is older than output '../../packages/dotenv/tsconfig.tsbuildinfo'
28
+
29
+ 4:57:00 PM - Project 'tsconfig.json' is out of date because output file 'tsconfig.tsbuildinfo' does not exist
30
+
31
+ 4:57:00 PM - Building project '/home/runner/work/captcha/captcha/demos/client-bundle-example/tsconfig.json'...
32
+
@@ -1,6 +1,10 @@
1
1
 
2
- > @prosopo/client-bundle-example@2.10.11 build
3
- > NODE_ENV=${NODE_ENV:-development}; vite build --config vite.esm.config.ts --mode $NODE_ENV
2
+ > @prosopo/client-bundle-example@2.10.12 build
3
+ > npm run build:cross-env -- --mode ${NODE_ENV:-development}
4
+
5
+
6
+ > @prosopo/client-bundle-example@2.10.12 build:cross-env
7
+ > vite build --config vite.esm.config.ts --mode production
4
8
 
5
9
  ViteEsmConfig: .
6
10
  {
@@ -30,4 +34,4 @@ Build end
30
34
  ✓ 1 modules transformed.
31
35
  rendering chunks...
32
36
  dist/index.js 1.61 kB
33
- ✓ built in 169ms
37
+ ✓ built in 141ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @prosopo/client-bundle-example
2
2
 
3
+ ## 2.10.12
4
+ ### Patch Changes
5
+
6
+ - 0a38892: feat/cross-os-testing
7
+ - a8faa9a: bump license year
8
+ - 3acc333: Release 3.3.0
9
+
3
10
  ## 2.10.11
4
11
  ### Patch Changes
5
12
 
package/package.json CHANGED
@@ -16,20 +16,21 @@
16
16
  },
17
17
  "scripts": {
18
18
  "clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
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:tsc": "tsc --build --verbose",
21
22
  "build:cjs": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
22
23
  "bundle": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.config.ts --mode $NODE_ENV",
23
24
  "typecheck": "tsc --project tsconfig.types.json",
24
25
  "start": "NODE_ENV=${NODE_ENV:-development}; vite serve ./src --port 9232 --config vite.config.ts --mode=$NODE_ENV"
25
26
  },
26
- "version": "2.10.11",
27
+ "version": "2.10.12",
27
28
  "devDependencies": {
28
29
  "@emotion/cache": "11.11.0",
29
- "@prosopo/config": "3.1.26",
30
- "@prosopo/dotenv": "3.0.31",
31
- "@prosopo/locale": "3.1.26",
32
- "@prosopo/types": "3.6.4",
30
+ "@prosopo/config": "3.3.0",
31
+ "@prosopo/dotenv": "3.0.33",
32
+ "@prosopo/locale": "3.1.28",
33
+ "@prosopo/types": "3.8.0",
33
34
  "@types/node": "22.5.5",
34
35
  "@vitest/coverage-v8": "3.2.4",
35
36
  "concurrently": "9.0.1",
@@ -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.