Skip to content

Commit

Permalink
Merge pull request #2 from betula/dev-1.0.0
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
betula authored Jan 21, 2025
2 parents 80a05c1 + 79d09f2 commit 94366cf
Show file tree
Hide file tree
Showing 52 changed files with 3,899 additions and 2,531 deletions.
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/node_modules/**
**/dist/**
**/coverage/**
**/build/**
**/.git/**
**/public/**
**/__deprecated__/**
2 changes: 2 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module.exports = {
};
9 changes: 5 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [16]
node: [20]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm run test -- --coverage
- uses: coverallsapp/github-action@master
- run: npm install -g yarn
- run: yarn
- run: yarn run test:all --coverage
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
35 changes: 20 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# OS
.DS_Store
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# testing
/coverage

# packages
node_modules
# production
/build
/dist

# TS
dist
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# Jest
coverage
npm-debug.log*
yarn-debug.log*
yarn-error.log*
20 changes: 20 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading

0 comments on commit 94366cf

Please sign in to comment.