Skip to content

Commit

Permalink
chore(alpha PE-5740): release v1.0.0-alpha.0 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta authored Mar 12, 2024
2 parents 7383460 + af4a20b commit 4b283d6
Show file tree
Hide file tree
Showing 43 changed files with 5,189 additions and 2,122 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ lib
**/*.cjs
**/*.mjs
examples
jest.config.ts
17 changes: 8 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
{
"root": true,
"plugins": ["@typescript-eslint", "mocha", "prettier", "header"],
"plugins": ["@typescript-eslint", "jest", "prettier", "header"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:mocha/recommended",
"plugin:prettier/recommended"
"plugin:prettier/recommended",
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
"project": "./tsconfig.json",
},
"rules": {
"mocha/no-mocha-arrows": "off",
"header/header": ["error", "resources/license.header.js"],
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/strict-boolean-expressions": [
"error",
{
"allowNullableObject": true,
"allowNullableBoolean": true,
"allowAny": true
}
]
}
"allowAny": true,
},
],
"@typescript-eslint/no-unused-vars": "error",
},
}
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
strategy:
matrix:
node_version: [18.x, 20.x]
command: ['lint', 'format', 'test', 'build']
command: ['lint', 'format', 'test:integration', 'build']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set Up node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: 'yarn'
Expand Down
5 changes: 5 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn format:fix
yarn lint
9 changes: 0 additions & 9 deletions .mocharc

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.17.0
v18.17.1
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prerelease": true
}
],
"repositoryUrl": "https://github.com/ardriveapp/node-sdk-template",
"repositoryUrl": "https://github.com/ar-io/ar-io-sdk",
"debug": "false",
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ar-io/core-team
Loading

0 comments on commit 4b283d6

Please sign in to comment.