Skip to content

Commit d5fa4c1

Browse files
committed
chore: update-nx.json
1 parent e80f0c0 commit d5fa4c1

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

nx.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
},
5050
"@nx/vite:build": {
5151
"dependsOn": ["^build"],
52+
"inputs": ["production", "^production"],
5253
"cache": true,
5354
"outputs": ["{projectRoot}/dist"]
5455
},
@@ -57,10 +58,12 @@
5758
"cache": true
5859
},
5960
"@nx/esbuild:esbuild": {
61+
"inputs": ["production", "^production"],
6062
"dependsOn": ["^build"],
6163
"cache": true
6264
},
6365
"e2e-ci--**/*": {
66+
"inputs": ["default", "^default"],
6467
"dependsOn": ["^build"],
6568
"cache": true
6669
},
@@ -144,7 +147,8 @@
144147
"previewTargetName": "vite:preview",
145148
"serveStaticTargetName": "vite:serve-static",
146149
"typecheckTargetName": "vite:typecheck"
147-
}
150+
},
151+
"include": ["!e2e/token-vault-app/**/*", "packages/**/*", "e2e/**/*"]
148152
}
149153
],
150154
"defaultProject": "javascript-sdk",

packages/ping-protect/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019-2025 Ping Identity Corporation
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

packages/ping-protect/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ npm install @forgerock/javascript-sdk @forgerock/ping-protect
2121
```
2222

2323
```sh
24-
pnpm install @forgerock/javascript-sdk @forgerock/ping-protect
24+
pnpm add @forgerock/javascript-sdk @forgerock/ping-protect
2525
```
2626

2727
The two main responsibilities of the Ping Protect module is the initialization of the profiling and data collection and the completion and preparation of the collected data for the server. You can find the two methods on the `PIProtect` module found within the `@forgerock/ping-protect` module.

packages/ping-protect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "4.6.0",
44
"private": false,
55
"type": "module",
6-
"files": ["dist"],
6+
"files": ["./dist/*"],
77
"module": "./dist/index.js",
88
"main": "./dist/index.js",
99
"repository": {

0 commit comments

Comments
 (0)