Skip to content

Commit

Permalink
Set up new tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Apr 6, 2024
1 parent 3fc3466 commit af3b160
Show file tree
Hide file tree
Showing 8 changed files with 7,369 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ yarn-error.log*
.env*.local

# typescript
*.tsbuildinfo
*.tsbuildinfo

# build artifacts
dist
7 changes: 7 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"*.js": "prettier --write",
"*.ts": "prettier --write",
"*.md": "prettier --write",
"*.json": "prettier --write",
"*.yaml": "prettier --write"
}
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.env
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
compressionLevel: mixed

enableGlobalCache: false

enableScripts: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
46 changes: 41 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,52 @@
{
"name": "@hyperlane-xyz/registry",
"description": "A collection of configs, artifacts, and schemas for Hyperlane ",
"description": "A collection of configs, artifacts, and schemas for Hyperlane",
"version": "1.0.0",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@hyperlane-xyz/sdk": "3.10.0",
"@types/mocha": "^10.0.1",
"@types/node": "^16.9.1",
"chai": "^4.3.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"tsx": "^4.7.1",
"typescript": "5.3.3",
"yaml": "^2.3.1"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./chains": "./dist/chains/index.js",
"./chains/js": "./dist/chains/index.js",
"./chains/json": "./dist/chains/index.json",
"./chains/yaml": "./dist/chains/index.yaml",
"./chains/svg": "./dist/chains/svg"
},
"types": "./dist/index.d.ts",
"files": [
"/chains",
"/deployments"
"/dist"
],
"sideEffects": false,
"engines": {
"node": ">=16"
},
"homepage": "https://www.hyperlane.xyz",
"repository": "https://github.com/hyperlane-xyz/hyperlane-registry",
"keywords": [
"Hyperlane",
"Registry"
"Registry",
"Chains",
"Deployments"
],
"license": "MIT",
"repository": "https://github.com/hyperlane-xyz/hyperlane-registry"
"scripts": {
"prepare": "husky",
"clean": "rm -rf ./dist",
"prettier": "prettier --write ./chains ./deployments",
"test": "echo 'TODO'"
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit af3b160

Please sign in to comment.