Skip to content

Commit

Permalink
Update lib-upng to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Dec 8, 2022
1 parent 077a912 commit 8af3460
Show file tree
Hide file tree
Showing 10 changed files with 846 additions and 41 deletions.
11 changes: 7 additions & 4 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,23 @@
!.*

# vendors
node_modules/**
**/node_modules/**
**/vendors/**
**/vendor/**
**/third-party/**

# build file
dist/**
**/dist/**
**/*.min.*

# fixtures
**/fixtures/**

# test
.nyc_output/**
coverage/**
**/.nyc_output/**
**/coverage/**

# yarn
**/.yarn

# project glob
7 changes: 4 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ jobs:
# exclude:
# - os: "macos-latest"
# node_version: "12"

name: Node.js ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
# needs: [build]
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
Expand Down Expand Up @@ -73,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,11 @@ typings/
# DynamoDB Local files
.dynamodb/

# Yarn 2
.yarn/cache/
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# project ignore files
dist/
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
10 changes: 0 additions & 10 deletions .huskyrc.cjs

This file was deleted.

7 changes: 5 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
!.*

# vendors
node_modules/**
**/node_modules/**
**/vendors/**
**/vendor/**
**/third-party/**

# build file
dist/**
**/dist/**
**/*.min.*

# fixtures
Expand All @@ -27,4 +27,7 @@ coverage/**
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# yarn
.yarn

# project glob
807 changes: 807 additions & 0 deletions .yarn/releases/yarn-3.3.0.cjs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
defaultSemverRangePrefix: ""

enableGlobalCache: true

yarnPath: .yarn/releases/yarn-3.3.0.cjs
10 changes: 0 additions & 10 deletions commitlint.config.cjs

This file was deleted.

20 changes: 8 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,35 +50,32 @@
"lint:prettier": "prettier \"**/*.{css,html,js,cjs,mjs,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"release": "run-s clean build lint test format dist",
"test": "ava",
"test-coverage": "nyc yarn test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
"test-coverage": "c8 yarn test"
},
"ava": {
"verbose": true
},
"nyc": {
"c8": {
"reporter": [
"lcov",
"text"
],
"all": true,
"include": [
"index.js"
]
},
"dependencies": {
"is-png": "3.0.1",
"lib-upng": "2.0.1"
"lib-upng": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@fisker/commitlint-config": "2.0.5",
"@fisker/eslint-config": "10.2.5",
"@fisker/eslint-config-ava": "2.0.5",
"@fisker/husky-config": "4.1.3",
"@fisker/lint-staged-config": "3.1.6",
"@fisker/prettier-config": "5.0.7",
"ava": "5.1.0",
"c8": "7.12.0",
"cz-conventional-changelog": "3.3.0",
"del-cli": "5.0.0",
"eslint": "8.29.0",
Expand All @@ -87,7 +84,6 @@
"lint-staged": "13.1.0",
"markdownlint-cli": "0.32.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.8.1",
"sort-package-json": "2.1.0"
},
Expand Down

0 comments on commit 8af3460

Please sign in to comment.