@prosopo/vue-procaptcha-integration-demo 1.1.5 → 1.1.6
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/CHANGELOG.md +16 -0
- package/package.json +19 -8
- package/project.json +18 -0
- package/vite.cjs.config.ts +26 -0
- package/vite.esm.config.ts +27 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @prosopo/vue-procaptcha-integration-demo
|
|
2
2
|
|
|
3
|
+
## 1.1.6
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- 3573f0b: build using vite, typecheck using tsc
|
|
7
|
+
- Updated dependencies [93d5e50]
|
|
8
|
+
- Updated dependencies [3573f0b]
|
|
9
|
+
- Updated dependencies [3573f0b]
|
|
10
|
+
- Updated dependencies [efd8102]
|
|
11
|
+
- Updated dependencies [93d5e50]
|
|
12
|
+
- Updated dependencies [63519d7]
|
|
13
|
+
- Updated dependencies [3573f0b]
|
|
14
|
+
- Updated dependencies [2d0dd8a]
|
|
15
|
+
- @prosopo/types@3.0.4
|
|
16
|
+
- @prosopo/config@3.1.1
|
|
17
|
+
- @prosopo/vue-procaptcha-wrapper@1.1.6
|
|
18
|
+
|
|
3
19
|
## 1.1.5
|
|
4
20
|
### Patch Changes
|
|
5
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/vue-procaptcha-integration-demo",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "20",
|
|
@@ -8,19 +8,30 @@
|
|
|
8
8
|
},
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/cjs/index.cjs",
|
|
15
|
+
"types": "./dist/index.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
11
18
|
"scripts": {
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
19
|
+
"build": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
|
|
20
|
+
"build:cjs": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
|
|
21
|
+
"clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
|
|
22
|
+
"typecheck": "vue-tsc --build --declaration --emitDeclarationOnly",
|
|
23
|
+
"test": "echo no tests",
|
|
24
|
+
"bundle": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.config.ts --mode $NODE_ENV",
|
|
25
|
+
"dev": "NODE_ENV=${NODE_ENV:-development}; vite dev --port=9331 --mode=$NODE_ENV"
|
|
17
26
|
},
|
|
18
27
|
"dependencies": {
|
|
19
|
-
"@prosopo/vue-procaptcha-wrapper": "1.1.
|
|
28
|
+
"@prosopo/vue-procaptcha-wrapper": "1.1.6",
|
|
29
|
+
"@prosopo/config": "3.1.1",
|
|
30
|
+
"@prosopo/types": "3.0.4",
|
|
20
31
|
"vue": "3.5.13"
|
|
21
32
|
},
|
|
22
33
|
"devDependencies": {
|
|
23
|
-
"@prosopo/procaptcha-integration-build-config": "1.1.
|
|
34
|
+
"@prosopo/procaptcha-integration-build-config": "1.1.1",
|
|
24
35
|
"@vitejs/plugin-vue": "5.2.3",
|
|
25
36
|
"del-cli": "6.0.0",
|
|
26
37
|
"vue-tsc": "2.2.10"
|
package/project.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"targets": {
|
|
3
|
+
"build": {
|
|
4
|
+
"executor": "nx:run-script",
|
|
5
|
+
"options": {
|
|
6
|
+
"script": "build"
|
|
7
|
+
},
|
|
8
|
+
"dependsOn": ["^build", "^typecheck"]
|
|
9
|
+
},
|
|
10
|
+
"build:cjs": {
|
|
11
|
+
"executor": "nx:run-script",
|
|
12
|
+
"options": {
|
|
13
|
+
"script": "build"
|
|
14
|
+
},
|
|
15
|
+
"dependsOn": ["^build:cjs", "^typecheck"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import path from "node:path";
|
|
2
|
+
// Copyright 2021-2025 Prosopo (UK) Ltd.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License.
|
|
6
|
+
// You may obtain a copy of the License at
|
|
7
|
+
//
|
|
8
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
//
|
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
// See the License for the specific language governing permissions and
|
|
14
|
+
// limitations under the License.
|
|
15
|
+
import { ViteCommonJSConfig } from "@prosopo/config";
|
|
16
|
+
import vue from "@vitejs/plugin-vue";
|
|
17
|
+
|
|
18
|
+
export default async function () {
|
|
19
|
+
const config = await ViteCommonJSConfig(
|
|
20
|
+
path.basename("."),
|
|
21
|
+
path.resolve("./tsconfig.json"),
|
|
22
|
+
);
|
|
23
|
+
config.plugins = config.plugins || [];
|
|
24
|
+
config.plugins.push(vue());
|
|
25
|
+
return config;
|
|
26
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Copyright 2021-2025 Prosopo (UK) Ltd.
|
|
2
|
+
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
|
|
15
|
+
import path from "node:path";
|
|
16
|
+
import { ViteEsmConfig } from "@prosopo/config";
|
|
17
|
+
import vue from "@vitejs/plugin-vue";
|
|
18
|
+
|
|
19
|
+
export default async function () {
|
|
20
|
+
const config = await ViteEsmConfig(
|
|
21
|
+
path.basename("."),
|
|
22
|
+
path.resolve("./tsconfig.json"),
|
|
23
|
+
);
|
|
24
|
+
config.plugins = config.plugins || [];
|
|
25
|
+
config.plugins.push(vue());
|
|
26
|
+
return config;
|
|
27
|
+
}
|