We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
items
I added an item at the end of an items array here and it led to CI failure. When I put it at the beginning of the list the CI workflow succeeded.
I installed the workflow locally and ran vp-docs.js against the fuels-ts docs. The failing ordering yields this:
vp-docs.js
fuels-ts
const order = processVPConfig(configFile.split(EOL)); console.log(order); // Tooling: [], // Testing: [ // 'Testing in TS', // 'Setting Up a Custom Chain', // 'Tweaking the Blockchain' // ], // CLI: [], // fuels: [ 'Config File', 'Commands', 'Binaries', 'Graphql Integration' ],
The successful ordering yields this:
const order = processVPConfig(configFile.split(EOL)); console.log(order); // Tooling: [ 'GraphQL Integration' ], // Testing: [ // 'Testing in TS', // 'Setting Up a Custom Chain', // 'Tweaking the Blockchain' // ], // CLI: [], // fuels: [ 'Config File', 'Commands', 'Binaries' ],
The text was updated successfully, but these errors were encountered:
create-fuels
Errors
ErrorCodes
No branches or pull requests
I added an item at the end of an
items
array here and it led to CI failure.When I put it at the beginning of the list the CI workflow succeeded.
I installed the workflow locally and ran
vp-docs.js
against thefuels-ts
docs. The failing ordering yields this:The successful ordering yields this:
The text was updated successfully, but these errors were encountered: