Skip to content

Commit

Permalink
fix: Minimize changes
Browse files Browse the repository at this point in the history
  • Loading branch information
richtera committed Apr 7, 2024
1 parent 704cac6 commit cc31b5f
Show file tree
Hide file tree
Showing 12 changed files with 576 additions and 206 deletions.
145 changes: 64 additions & 81 deletions CHANGELOG.md

Large diffs are not rendered by default.

23 changes: 22 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,29 @@
"noExplicitAny": "off"
},
"style": {
"useImportType": "off"
"useImportType": "off",
"useNodejsImportProtocol": "off"
},
"complexity": {
"noForEach": "off"
}
}
},
"formatter": {
"indentWidth": 2,
"indentStyle": "space"
},
"javascript": {
"formatter": {
"semicolons": "always",
"quoteStyle": "single",
"trailingComma": "all"
}
},
"organizeImports": {
"enabled": false
},
"files": {
"ignore": ["node_modules", "build", "coverage", ".vscode"]
}
}
228 changes: 228 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@erc725/erc725.js",
"version": "0.24.0",
"version": "0.24.1-dev.5",
"description": "Library to interact with ERC725 smart contracts",
"main": "build/main/src/index.js",
"typings": "build/main/src/index.d.ts",
Expand All @@ -16,6 +16,8 @@
"build:module": "tsc -p tsconfig.module.json",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc --reporter=text --reporter=lcov mocha",
"lint": "eslint . --ext .ts",
"format:fix": "prettier --write .",
"format": "prettier .",
"release": "standard-version"
},
"repository": {
Expand Down Expand Up @@ -51,6 +53,7 @@
},
"homepage": "https://github.com/ERC725Alliance/erc725.js#readme",
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@types/chai": "^4.3.4",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^27.5.2",
Expand Down
Loading

0 comments on commit cc31b5f

Please sign in to comment.