Skip to content

Commit

Permalink
⬆️ dependencies, node
Browse files Browse the repository at this point in the history
  • Loading branch information
drom committed Feb 22, 2024
1 parent ddea5f6 commit a1194a4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 19]
node-version: [12, 14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 19]
node-version: [12, 14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 19]
node-version: [12, 14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2023 Aliaksei Chapyzhenka
Copyright (c) 2015-2024 Aliaksei Chapyzhenka

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"main": "lib/index.js",
"scripts": {
"test": "eslint lib/*.js && nyc -r=lcov -r=text mocha test",
"coverage": "nyc report -r=text-lcov | coveralls",
"alpha": "node bin/bitfield.js --input test/alpha.json --hspace 800 > test/alpha.svg",
"browserify": "browserify --standalone bitfield lib/index.js > build/bitfield.js",
"prepublish": "npm run test && mkdir -p build && npm run browserify"
Expand All @@ -22,23 +21,22 @@
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"@drom/eslint-config": "^0.12.0",
"browserify": "^17.0.0",
"chai": "^4.3.7",
"coveralls": "^3.0.11",
"eslint": "^8.31.0",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"jsof": "^0.5.0",
"mocha": "^10.2.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0"
},
"directories": {
"test": "test"
},
"dependencies": {
"fs-extra": "^10.1.0",
"fs-extra": "^11.2.0",
"onml": "^2.1.0",
"tspan": "^0.4.0",
"yargs": "^17.6.2"
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit a1194a4

Please sign in to comment.