Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove IDE specific files and yarn.lock #66

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn test
cache: 'npm'
- run: npm install
- run: npm run build
- run: npm test
21 changes: 17 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
node_modules
# Node.js dependencies
node_modules/

# Build outputs
build/
umd/

# Coverage directory
.nyc_output/

# Log files
yarn-error.log
build
.nyc_output
umd

# OS-generated files
.DS_Store

# IDE-specific directories
.idea/
.vscode/
60 changes: 0 additions & 60 deletions .vscode/launch.json

This file was deleted.

50 changes: 50 additions & 0 deletions package-lock.json

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

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"node": ">18.0.0"
},
"scripts": {
"build": "rimraf build && yarn build:tsc && yarn build:build",
"build:production": "NODE_ENV=production yarn build:tsc && yarn build:build",
"build:tsc": "rimraf build && yarn tsc",
"dev:watch": "yarn tsc -- --watch",
"build:build": "yarn webpack",
"test": "yarn test:unit",
"build": "rimraf build && npm run build:tsc && npm run build:build",
"build:production": "NODE_ENV=production npm run build:tsc && npm run build:build",
"build:tsc": "rimraf build && tsc",
"dev:watch": "tsc -- --watch",
"build:build": "webpack",
"test": "npm run test:unit",
"test:unit": "tap --ts tests/test_*.ts",
"test:unit-snapshot": "tap --ts --snapshot tests/test_*.ts",
"prepublishOnly": "yarn build:production"
"prepublishOnly": "npm run build:production"
},
"author": "",
"license": "Apache-2.0",
Expand Down
Loading
Loading