Skip to content

Commit 6bc605b

Browse files
authored
Merge pull request #240 from ForgeRock/redo-format
chore: change-format-again
2 parents 41f48fe + b78248e commit 6bc605b

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
retention-days: 30
6767

6868
- name: build docs
69-
run: pnpm typedoc
69+
run: pnpm generate-docs
7070

7171
- name: preview-docs
7272
uses: rajyan/preview-pages@v1

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
token: ${{ secrets.CODECOV_TOKEN }}
9292

9393
- name: Build docs
94-
run: pnpm typedoc
94+
run: pnpm generate-docs
9595

9696
- name: Publish api docs
9797
if: steps.changesets.outputs.published == 'true'

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export default [
2323
{
2424
ignores: [
2525
'**/dist',
26+
'**/docs',
2627
'**/vite.config.*.timestamp*',
2728
'**/vitest.config.*.timestamp*',
2829
'**/out-tsc',

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"build": "nx affected --target=build",
1717
"changeset": "changeset",
1818
"ci:release": "pnpm publish -r --no-git-checks && changeset tag",
19-
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format",
19+
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm nx format:write",
2020
"circular-dep-check": "madge --circular .",
2121
"clean": "shx rm -rf ./{coverage,dist,docs,node_modules,tmp}/ ./{packages,e2e}/*/{dist,node_modules}/ && git clean -fX -e \"!.env*,nx-cloud.env\"",
2222
"commit": "git cz",
2323
"commitlint": "commitlint --edit",
2424
"create-package": "nx g @nx/js:library",
25-
"docs": "nx affected --target=typedoc",
25+
"generate-docs": "typedoc",
2626
"format": "pnpm nx format:write",
2727
"lint": "nx affected --target=lint",
2828
"local-release": "pnpm ts-node tools/release/release.ts",
@@ -48,6 +48,7 @@
4848
"path": "./node_modules/cz-conventional-changelog"
4949
}
5050
},
51+
"dependencies": {},
5152
"devDependencies": {
5253
"@changesets/changelog-github": "^0.5.0",
5354
"@changesets/cli": "^2.27.9",
@@ -132,6 +133,5 @@
132133
},
133134
"nx": {
134135
"includedScripts": []
135-
},
136-
"dependencies": {}
136+
}
137137
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "@forgerock/iframe-manager",
3+
"entryPoints": ["src/index.ts"]
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "@forgerock/storage",
3+
"entryPoints": ["src/index.ts"]
4+
}

typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"hideGenerator": true,
1111
"searchInComments": true,
1212
"navigationLinks": {
13-
"GitHub": "https://github.com/yourusername/yourrepo"
13+
"GitHub": "https://github.com/ForgeRock/ping-javascript-sdk"
1414
},
1515
"packageOptions": {
1616
"tsconfig": "tsconfig.lib.json",

0 commit comments

Comments
 (0)