Skip to content

Commit

Permalink
Upgrade package
Browse files Browse the repository at this point in the history
  • Loading branch information
niksy committed Oct 15, 2023
1 parent 5456b0e commit 923ec08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ on:
- pull_request
jobs:
Test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12.22
os:
- ubuntu-latest
- windows-latest
- 16
steps:
- name: Clone repository
uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"release": "np --no-release-draft",
"version": "if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi",
"postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
"lint": "eslint \"{index,lib/**/*,test/**/*,generate-list}.js\"",
"test": "mocha --require esm \"test/**/*.js\"",
"lint": "eslint '{index,lib/**/*,test/**/*,generate-list}.js'",
"test": "mocha --require esm 'test/**/*.js'",
"test:watch": "npm test -- --watch",
"build": "rollup --config rollup.config.js",
"module-check": "node -e \"require('css-functions-list');\" && node --input-type=module -e \"import 'css-functions-list';\"",
"module-check": "node -e 'require(\"css-functions-list\");' && node --input-type=module -e 'import \"css-functions-list\";'",
"prepublishOnly": "npm run build",
"lint:types": "tsc",
"prerelease": "npm run lint && npm run lint:types && npm run build && npm run module-check"
Expand All @@ -61,7 +61,7 @@
"isomorphic-unfetch": "^3.1.0",
"jsdom": "^17.0.0",
"lint-staged": "^10.4.2",
"mocha": "^8.4.0",
"mocha": "^9.1.3",
"np": "^7.6.0",
"prettier": "^2.4.0",
"rollup": "^2.32.1",
Expand All @@ -70,7 +70,7 @@
"write-json-file": "^4.3.0"
},
"engines": {
"node": ">=12.22"
"node": ">=12 || >=16"
},
"keywords": [
"css",
Expand Down

0 comments on commit 923ec08

Please sign in to comment.