@prosopo/svelte-procaptcha-wrapper 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 +13 -0
- package/package.json +11 -7
- package/vite.cjs.config.ts +22 -0
- package/vite.esm.config.ts +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @prosopo/svelte-procaptcha-wrapper
|
|
2
2
|
|
|
3
|
+
## 1.1.6
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- 3573f0b: build using vite, typecheck using tsc
|
|
7
|
+
- Updated dependencies [0f4bc06]
|
|
8
|
+
- Updated dependencies [3573f0b]
|
|
9
|
+
- Updated dependencies [3573f0b]
|
|
10
|
+
- Updated dependencies [efd8102]
|
|
11
|
+
- Updated dependencies [3573f0b]
|
|
12
|
+
- Updated dependencies [2d0dd8a]
|
|
13
|
+
- @prosopo/procaptcha-wrapper@2.6.8
|
|
14
|
+
- @prosopo/config@3.1.1
|
|
15
|
+
|
|
3
16
|
## 1.1.5
|
|
4
17
|
### Patch Changes
|
|
5
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/svelte-procaptcha-wrapper",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "20",
|
|
@@ -11,25 +11,29 @@
|
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
13
|
"types": "./dist/index.d.ts",
|
|
14
|
-
"svelte": "./dist/index.js"
|
|
14
|
+
"svelte": "./dist/index.js",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"require": "./dist/cjs/index.cjs"
|
|
15
17
|
}
|
|
16
18
|
},
|
|
17
19
|
"scripts": {
|
|
18
|
-
"test": "echo
|
|
19
|
-
"clean": "del-cli
|
|
20
|
+
"test": "echo no tests",
|
|
21
|
+
"clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
|
|
20
22
|
"svpkg": "svelte-package -i ./src -o ./dist",
|
|
21
|
-
"build": "npm run svpkg && del-cli ./.svelte-kit",
|
|
23
|
+
"build": "npm run svpkg && del-cli --verbose ./.svelte-kit",
|
|
22
24
|
"dev": "npm run svpkg -- -w"
|
|
23
25
|
},
|
|
24
26
|
"dependencies": {
|
|
25
|
-
"@prosopo/procaptcha-wrapper": "2.6.
|
|
27
|
+
"@prosopo/procaptcha-wrapper": "2.6.8",
|
|
28
|
+
"@prosopo/config": "3.1.1"
|
|
26
29
|
},
|
|
27
30
|
"peerDependencies": {
|
|
28
31
|
"svelte": "^5.0.0"
|
|
29
32
|
},
|
|
30
33
|
"devDependencies": {
|
|
31
34
|
"@sveltejs/package": "2.3.10",
|
|
32
|
-
"del-cli": "6.0.0"
|
|
35
|
+
"del-cli": "6.0.0",
|
|
36
|
+
"svelte-check": "4.2.2"
|
|
33
37
|
},
|
|
34
38
|
"author": "PROSOPO LIMITED <info@prosopo.io>",
|
|
35
39
|
"license": "Apache-2.0",
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
|
|
17
|
+
export default function () {
|
|
18
|
+
return ViteCommonJSConfig(
|
|
19
|
+
path.basename("."),
|
|
20
|
+
path.resolve("./tsconfig.json"),
|
|
21
|
+
);
|
|
22
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
|
|
18
|
+
export default function () {
|
|
19
|
+
return ViteEsmConfig(path.basename("."), path.resolve("./tsconfig.json"));
|
|
20
|
+
}
|