Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
9eee2af5
Commit
9eee2af5
authored
Aug 15, 2023
by
Will Cory
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(contracts-bedrock): pnpm up --latest
parent
5a214f72
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
760 additions
and
321 deletions
+760
-321
package.json
packages/contracts-bedrock/package.json
+2
-2
forge-test-names.ts
packages/contracts-bedrock/scripts/forge-test-names.ts
+7
-4
pnpm-lock.yaml
pnpm-lock.yaml
+751
-315
No files found.
packages/contracts-bedrock/package.json
View file @
9eee2af5
...
...
@@ -39,8 +39,8 @@
"lint"
:
"pnpm lint:fix && pnpm lint:check"
},
"devDependencies"
:
{
"@typescript-eslint/eslint-plugin"
:
"^
5.60.1
"
,
"@typescript-eslint/parser"
:
"^
5.60.1
"
,
"@typescript-eslint/eslint-plugin"
:
"^
6.4.0
"
,
"@typescript-eslint/parser"
:
"^
6.4.0
"
,
"tsx"
:
"^3.12.7"
,
"typescript"
:
"^5.1.6"
}
...
...
packages/contracts-bedrock/scripts/forge-test-names.ts
View file @
9eee2af5
...
...
@@ -2,13 +2,16 @@ import fs from 'fs'
import
path
from
'
path
'
import
{
execSync
}
from
'
child_process
'
type
Check
=
(
parts
:
string
[])
=>
boolean
type
Checks
=
Array
<
{
check
:
Check
error
:
string
}
>
/**
* Series of function name checks.
*/
const
checks
:
Array
<
{
check
:
(
parts
:
string
[])
=>
boolean
error
:
string
}
>
=
[
const
checks
:
Checks
=
[
{
error
:
'
test name parts should be in camelCase
'
,
check
:
(
parts
:
string
[]):
boolean
=>
{
...
...
pnpm-lock.yaml
View file @
9eee2af5
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment