Skip to content

Commit

Permalink
Merge branch 'master' into create-assetid-helper-fn
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbate authored Jul 2, 2024
2 parents c817109 + 1fb529b commit cbb898c
Show file tree
Hide file tree
Showing 25 changed files with 780 additions and 763 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-cooks-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fuel-ts/account": patch
---

build(deps-dev): bump @graphql-codegen/typescript-*
4 changes: 4 additions & 0 deletions .changeset/cuddly-humans-allow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
---

build(deps-dev): bump bun from 1.1.12 to 1.1.17
5 changes: 5 additions & 0 deletions .changeset/early-squids-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-fuels": patch
---

feat: add next link component to `create-fuels`
2 changes: 2 additions & 0 deletions .changeset/eight-grapes-hunt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
5 changes: 5 additions & 0 deletions .changeset/new-toys-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"fuels": patch
---

build(deps): bump yup from 0.32.11 to 1.4.0
5 changes: 5 additions & 0 deletions .changeset/rude-cameras-brake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-fuels": patch
---

build(deps): bump react and @types/react
5 changes: 5 additions & 0 deletions .changeset/shy-panthers-cry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fuel-ts/abi-typegen": patch
---

build(deps): bump rimraf from 3.0.2 to 5.0.7
5 changes: 5 additions & 0 deletions .changeset/strong-hounds-hang.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"fuels": patch
---

build(deps): bump esbuild from 0.19.3 to 0.22.0
5 changes: 5 additions & 0 deletions .changeset/warm-numbers-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fuel-ts/logger": patch
---

build(deps): bump debug from 4.3.4 to 4.3.5
2 changes: 1 addition & 1 deletion .github/workflows/pr-validate-changesets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Commit Changeset
run: |
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git add .
git commit -m "build: update dependency changeset"
Expand Down
4 changes: 2 additions & 2 deletions apps/create-fuels-counter-guide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"@tanstack/react-query": "^5.29.2",
"dotenv": "^16.4.5",
"next": "14.2.4",
"react": "^18.2",
"react": "^18.3",
"react-dom": "^18.2",
"react-hot-toast": "^2.4.1",
"react-use": "^17.5.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.2",
"@types/react": "^18.3",
"@types/react-dom": "^18.2",
"autoprefixer": "^10.0.1",
"eslint": "^8",
Expand Down
6 changes: 4 additions & 2 deletions apps/create-fuels-counter-guide/src/components/Link.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import NextLink from 'next/link';

export const Link = ({
href,
children,
Expand All @@ -10,12 +12,12 @@ export const Link = ({
target?: string;
}) => {
return (
<a
<NextLink
href={href}
className={`text-fuel-green hover:underline ${className}`}
target={target}
>
{children}
</a>
</NextLink>
);
};
2 changes: 1 addition & 1 deletion apps/demo-bun-fuels/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"version": null,
"devDependencies": {
"bun": "^1.1.9"
"bun": "^1.1.17"
}
}
4 changes: 2 additions & 2 deletions apps/demo-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"@fuels/vm-asm": "0.54.0",
"@types/node": "18.15.3",
"@types/react-dom": "18.2.4",
"@types/react": "18.2.9",
"@types/react": "18.3.3",
"fuels": "workspace:*",
"next": "14.2.4",
"react-dom": "18.2.0",
"react": "18.2.0",
"react": "18.3.1",
"typescript": "~5.4.5"
}
}
4 changes: 2 additions & 2 deletions apps/demo-react-cra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"@fuels/vm-asm": "0.54.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^16.18.34",
"@types/react": "^18.2.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.4",
"eslint-config-react-app": "^7.0.1",
"fuels": "workspace:*",
"react": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "~5.4.5",
Expand Down
4 changes: 2 additions & 2 deletions apps/demo-react-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"@fuels/vm-asm": "0.54.0",
"fuels": "workspace:*",
"react-dom": "^18.2.0",
"react": "^18.2.0"
"react": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.0.37",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/demo-wallet-sdk-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"@tanstack/react-query": "^5.29.2",
"fuels": "workspace:*",
"next": "14.2.4",
"react": "^18",
"react": "^18.3.1",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"postcss": "^8",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"nyc": "^15.1.0",
"open": "^8.4.0",
"prettier": "^3.3.2",
"rimraf": "^3.0.2",
"rimraf": "^5.0.7",
"textlint": "^13.3.2",
"textlint-rule-no-dead-link": "^5.1.2",
"ts-generator": "^0.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-typegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"handlebars": "^4.7.8",
"mkdirp": "^1.0.4",
"ramda": "^0.29.0",
"rimraf": "^3.0.2"
"rimraf": "^5.0.7"
},
"devDependencies": {
"@internal/forc": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/abi-typegen/src/runTypegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { readFileSync, writeFileSync } from 'fs';
import { globSync } from 'glob';
import mkdirp from 'mkdirp';
import { basename } from 'path';
import rimraf from 'rimraf';
import { rimrafSync } from 'rimraf';

import { AbiTypeGen } from './AbiTypeGen';
import type { ProgramTypeEnum } from './types/enums/ProgramTypeEnum';
Expand Down Expand Up @@ -85,7 +85,7 @@ export function runTypegen(params: IGenerateFilesParams) {
mkdirp.sync(`${output}/factories`);

abiTypeGen.files.forEach((file) => {
rimraf.sync(file.path);
rimrafSync(file.path);
writeFileSync(file.path, file.contents);
const trimPathRegex = new RegExp(`^.+${cwdBasename}/`, 'm');
log(` - ${file.path.replace(trimPathRegex, '')}`);
Expand Down
4 changes: 2 additions & 2 deletions packages/account/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
"@fuel-ts/math": "workspace:*",
"@fuel-ts/utils": "workspace:*",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^2.8.0",
"@graphql-codegen/typescript": "^4.0.8",
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
"@graphql-codegen/typescript-operations": "^2.5.5",
"@graphql-codegen/typescript-operations": "^4.2.2",
"@types/ramda": "^0.29.3",
"@types/uuid": "^9.0.1",
"get-graphql-schema": "^2.1.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/fuels/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@
"chalk": "4",
"chokidar": "^3.5.3",
"commander": "12.1.0",
"esbuild": "^0.19.3",
"esbuild": "^0.22.0",
"glob": "^10.2.6",
"handlebars": "^4.7.8",
"joycon": "^3.1.1",
"lodash.camelcase": "^4.3.0",
"portfinder": "^1.0.32",
"toml": "^3.0.0",
"tree-kill": "^1.2.2",
"yup": "^0.32.11"
"yup": "^1.4.0"
},
"devDependencies": {
"@types/lodash.camelcase": "^4.3.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"dist"
],
"dependencies": {
"debug": "^4.3.4",
"debug": "^4.3.5",
"@fuel-ts/address": "workspace:*",
"@fuel-ts/interfaces": "workspace:*",
"@fuel-ts/math": "workspace:*"
Expand Down
Loading

0 comments on commit cbb898c

Please sign in to comment.