Skip to content

Commit

Permalink
ship shape
Browse files Browse the repository at this point in the history
add lint config
fix ts building and cleaning
fix import
  • Loading branch information
aaronmgdr committed Oct 1, 2024
1 parent cb1a6d9 commit 14fe6c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/sdk/metadata-claims/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: '../../../.eslintrc.js',
}
4 changes: 2 additions & 2 deletions packages/sdk/metadata-claims/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"types": "./lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "yarn run --top-level tsc -b .",
"clean": "yarn run --top-level tsc -b . --clean",
"build": "yarn tsc -b .",
"clean": "rm -rf lib ; yarn run tsc -b . --clean",
"prepublishOnly": "yarn build",
"docs": "yarn run --top-level typedoc",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn run --top-level jest --runInBand --forceExit",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/metadata-claims/src/metadata.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { testWithAnvilL1 } from '@celo/dev-utils/lib/anvil-test'
import { ACCOUNT_ADDRESSES } from '@celo/dev-utils/lib/ganache-setup'
import { Address } from '@celo/utils/lib/address'
import { NativeSigner } from '@celo/utils/lib/signatureUtils'
import { createNameClaim } from './claims/claim'
import { createNameClaim } from './claim'
import { ClaimTypes, IdentityMetadataWrapper } from './metadata'

testWithAnvilL1('Metadata', (web3) => {
Expand Down

0 comments on commit 14fe6c2

Please sign in to comment.