Skip to content

Commit

Permalink
v6.0.2 - fix in helpers dist
Browse files Browse the repository at this point in the history
  • Loading branch information
saleel committed Apr 19, 2024
1 parent 3739aba commit 1b494cd
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 36 deletions.
2 changes: 1 addition & 1 deletion packages/circuits/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zk-email/circuits",
"version": "6.0.0",
"version": "6.0.2",
"license": "MIT",
"scripts": {
"publish": "yarn npm publish --access=public",
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zk-email/contracts",
"version": "6.0.0",
"version": "6.0.2",
"license": "MIT",
"scripts": {
"build": "forge build",
Expand Down
32 changes: 0 additions & 32 deletions packages/helpers/.eslintrc.json

This file was deleted.

42 changes: 40 additions & 2 deletions packages/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@zk-email/helpers",
"version": "6.0.0",
"version": "6.0.2",
"license": "MIT",
"main": "dist",
"scripts": {
"build": "tsc",
"test": "jest tests/**/*.test.ts",
"lint": "eslint src/**/*.ts",
"lint": "eslint .",
"prepublish": "yarn lint && yarn build",
"publish": "yarn npm publish --access=public"
},
Expand Down Expand Up @@ -69,5 +69,43 @@
"jest"
]
]
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb-base",
"airbnb-typescript/base"
],
"ignorePatterns": [
"src/lib/**/*",
"tests/**/*",
"dist",
"node_modules"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"max-len": ["error", { "code": 150 }],
"import/prefer-default-export": "off",
"no-await-in-loop": "off",
"no-restricted-syntax": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"no-console": "off",
"no-continue": "off",
"@typescript-eslint/no-use-before-define": "off",
"prefer-destructuring": "off"
}
}
}

0 comments on commit 1b494cd

Please sign in to comment.