@forgerock/iframe-manager 0.0.0-beta-20250506165419 → 0.0.0-beta-20250605190922

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 CHANGED
@@ -1,14 +1,7 @@
1
1
  # @forgerock/iframe-manager
2
2
 
3
- ## 0.0.0-beta-20250506165419
3
+ ## 0.0.0-beta-20250605190922
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - [#253](https://github.com/ForgeRock/ping-javascript-sdk/pull/253) [`04b506c`](https://github.com/ForgeRock/ping-javascript-sdk/commit/04b506c2016324dffeba3a473bfc705843ac3e41) Thanks [@ryanbas21](https://github.com/ryanbas21)! - Adds IFrame manager package to be able to create iframes and parse search params from the iframe url.
8
-
9
- ### Patch Changes
10
-
11
- - Updated dependencies [[`04b506c`](https://github.com/ForgeRock/ping-javascript-sdk/commit/04b506c2016324dffeba3a473bfc705843ac3e41), [`0d54b34`](https://github.com/ForgeRock/ping-javascript-sdk/commit/0d54b3461443fcf5c5071a08578f2d418f066073), [`50fd7fa`](https://github.com/ForgeRock/ping-javascript-sdk/commit/50fd7fab9f0dd893528e85cb15f1ba6fdc1fe3e8)]:
12
- - @forgerock/sdk-types@0.0.0-beta-20250506165419
13
- - @forgerock/sdk-request-middleware@0.0.0-beta-20250506165419
14
- - @forgerock/sdk-utilities@0.0.0-beta-20250506165419
package/package.json CHANGED
@@ -1,28 +1,34 @@
1
1
  {
2
2
  "name": "@forgerock/iframe-manager",
3
- "version": "0.0.0-beta-20250506165419",
3
+ "version": "0.0.0-beta-20250605190922",
4
4
  "private": false,
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/ForgeRock/ping-javascript-sdk.git",
8
+ "directory": "packages/sdk-effects/iframe-manager"
9
+ },
5
10
  "type": "module",
6
- "main": "./dist/src/index.js",
7
- "module": "./dist/src/index.js",
8
- "types": "./dist/src/index.d.ts",
9
11
  "exports": {
10
- "./package.json": "./package.json",
11
12
  ".": {
12
13
  "types": "./dist/src/index.d.ts",
13
14
  "import": "./dist/src/index.js",
14
15
  "default": "./dist/src/index.js"
15
- }
16
- },
17
- "dependencies": {
18
- "tslib": "^2.3.0",
19
- "@forgerock/sdk-request-middleware": "0.0.0-beta-20250506165419",
20
- "@forgerock/sdk-types": "0.0.0-beta-20250506165419",
21
- "@forgerock/sdk-utilities": "0.0.0-beta-20250506165419"
16
+ },
17
+ "./package.json": "./package.json"
22
18
  },
19
+ "main": "./dist/src/index.js",
20
+ "module": "./dist/src/index.js",
21
+ "types": "./dist/src/index.d.ts",
22
+ "dependencies": {},
23
23
  "nx": {
24
24
  "tags": [
25
25
  "scope:sdk-effects"
26
26
  ]
27
+ },
28
+ "scripts": {
29
+ "build": "pnpm nx nxBuild",
30
+ "lint": "pnpm nx nxLint",
31
+ "test": "pnpm nx nxTest",
32
+ "test:watch": "pnpm nx nxTest --watch"
27
33
  }
28
34
  }
package/tsconfig.json CHANGED
@@ -3,15 +3,6 @@
3
3
  "files": [],
4
4
  "include": [],
5
5
  "references": [
6
- {
7
- "path": "../../sdk-types"
8
- },
9
- {
10
- "path": "../../sdk-utilities"
11
- },
12
- {
13
- "path": "../sdk-request-middleware"
14
- },
15
6
  {
16
7
  "path": "./tsconfig.lib.json"
17
8
  },
package/tsconfig.lib.json CHANGED
@@ -16,17 +16,7 @@
16
16
  "types": ["node"]
17
17
  },
18
18
  "include": ["src/**/*.ts"],
19
- "references": [
20
- {
21
- "path": "../../sdk-types/tsconfig.lib.json"
22
- },
23
- {
24
- "path": "../../sdk-utilities/tsconfig.lib.json"
25
- },
26
- {
27
- "path": "../sdk-request-middleware/tsconfig.lib.json"
28
- }
29
- ],
19
+ "references": [],
30
20
  "exclude": [
31
21
  "vite.config.ts",
32
22
  "vite.config.mts",
package/vite.config.ts CHANGED
@@ -9,6 +9,7 @@ export default defineConfig(() => ({
9
9
  // plugins: [ nxViteTsPaths() ],
10
10
  // },
11
11
  test: {
12
+ passWithNoTests: true,
12
13
  watch: false,
13
14
  globals: true,
14
15
  environment: 'node',