Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: finalise docs-snippets #3369

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9f1dec9
chore: migrate all `docs-snippets2` functionality to `docs`
petertonysmith94 Oct 30, 2024
806d9ea
add script snippets to `docs-snippets2`
Dhaiwat10 Nov 13, 2024
591dd2b
Merge branch 'master' of github.com:FuelLabs/fuels-ts into ps/docs/fi…
petertonysmith94 Nov 13, 2024
5b6f3b0
chore: finalized migration of docs-snippets
petertonysmith94 Nov 13, 2024
be7cd63
chore: added correct path to env
petertonysmith94 Nov 13, 2024
0f59663
chore: finalized the snippet wrapping
petertonysmith94 Nov 13, 2024
86cafdd
chore: lint + gitignore
petertonysmith94 Nov 13, 2024
44cf8fe
Merge branch 'master' into ps/docs/finalise-docs-snippets
petertonysmith94 Nov 13, 2024
5fb5201
chore: removed typegend folder
petertonysmith94 Nov 13, 2024
c4a414c
chore: tweaked the type check to only pass the snippets
petertonysmith94 Nov 13, 2024
14f44c6
Merge branch 'ps/docs/finalise-docs-snippets' of github.com:FuelLabs/…
petertonysmith94 Nov 13, 2024
daf922c
chore: removed regions
petertonysmith94 Nov 13, 2024
7fbb526
chore: removed final `#import`
petertonysmith94 Nov 13, 2024
2a0be14
docs: migrated `script-init`
petertonysmith94 Nov 13, 2024
dec35d1
chore: reverted changes to proxy
petertonysmith94 Nov 13, 2024
c89b622
chore: changeset
petertonysmith94 Nov 13, 2024
8a27f9c
Merge branch 'master' into ps/docs/finalise-docs-snippets
petertonysmith94 Nov 13, 2024
ef5475b
Merge branch 'master' into ps/docs/finalise-docs-snippets
Torres-ssf Nov 14, 2024
8d36260
Merge remote-tracking branch 'origin' into ps/docs/finalise-docs-snip…
petertonysmith94 Nov 14, 2024
d66bce5
Merge branch 'ps/docs/finalise-docs-snippets' of github.com:FuelLabs/…
petertonysmith94 Nov 14, 2024
8ba0f4a
chore: test changes to docs action
petertonysmith94 Nov 14, 2024
7150c77
Revert "chore: test changes to docs action"
petertonysmith94 Nov 15, 2024
b8411ce
chore: testing deleting the snippets folder
petertonysmith94 Nov 15, 2024
3346752
Merge remote-tracking branch 'origin' into ps/docs/finalise-docs-snip…
petertonysmith94 Nov 15, 2024
ea7a2be
chore: testing with small subset of snippets
petertonysmith94 Nov 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
"demo-nextjs",
"demo-node-esm",
"demo-typegen",
"docs-snippets",
"docs-snippets2",
"template-nextjs",
"create-fuels-counter-guide",
"demo-wallet-sdk-react",
Expand Down
2 changes: 2 additions & 0 deletions .changeset/itchy-forks-worry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
4 changes: 2 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ apps/demo-nextjs
apps/demo-react-cra
apps/demo-react-vite
apps/create-fuels-counter-guide
apps/docs-snippets2/src/typegend
apps/docs-snippets2/src/**/*.test.ts
apps/docs/src/snippets/typegend
apps/docs/src/snippets/**/*.test.ts

packages/fuels/src/cli/commands/deploy/proxy
packages/fuels/test/fixtures/project
Expand Down
3 changes: 1 addition & 2 deletions .knip.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"/apps/docs/*",
"/packages/abi-typegen/test/**",
"templates/**",
"/apps/docs-snippets/**",
"/apps/docs-snippets2/**/*.test.ts",
"/apps/docs/**/*.test.ts",
"apps/create-fuels-counter-guide/**"
],
"ignoreDependencies": [
Expand Down
3 changes: 1 addition & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ apps/demo-typegen/src/script-types
apps/demo-typegen/src/predicate-types
apps/docs/.vitepress/cache/
apps/create-fuels-counter-guide
apps/docs-snippets/.fuels
apps/docs-snippets2/.fuels
apps/docs/.fuels

packages/fuels/src/cli/commands/deploy/proxy
packages/fuels/test/fixtures/project
Expand Down
4 changes: 2 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
}
},
{
"files": ["apps/docs-snippets2/src/**/*.ts"],
"excludeFiles": ["apps/docs-snippets2/src/**/*.test.ts"],
"files": ["apps/docs/src/snippets/**/*.ts"],
"excludeFiles": ["apps/docs/src/snippets/**/*.test.ts"],
"options": {
"printWidth": 80
}
Expand Down
2 changes: 0 additions & 2 deletions apps/demo-fuels/fuels.config.full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ export default createConfig({
// #endregion onBuild

// #region onDeploy
// #import { DeployedData, FuelsConfig };

onDeploy: (config: FuelsConfig, data: DeployedData) => {
console.log('fuels:onDeploy', { config, data });
},
Expand Down
1 change: 0 additions & 1 deletion apps/docs-snippets/.gitignore

This file was deleted.

134 changes: 0 additions & 134 deletions apps/docs-snippets/CHANGELOG.md

This file was deleted.

19 changes: 0 additions & 19 deletions apps/docs-snippets/package.json

This file was deleted.

This file was deleted.

Loading
Loading