Skip to content

Commit

Permalink
Merge pull request #40 from hildjj/dcbor-11
Browse files Browse the repository at this point in the history
Update for dcbor-11
  • Loading branch information
hildjj authored Aug 22, 2024
2 parents 7eb5009 + caae64e commit d2193da
Show file tree
Hide file tree
Showing 30 changed files with 899 additions and 437 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
path = test-vectors
url = https://github.com/hildjj/test-vectors.git
branch = failures
[submodule "dcbor-test-vectors"]
path = dcbor-test-vectors
url = https://github.com/hildjj/dcbor-test-vectors.git
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ tsconfig.json
tsup.config.js
typedoc.config.cjs
web/
dcbor-test-vectors/
1 change: 1 addition & 0 deletions dcbor-test-vectors
Submodule dcbor-test-vectors added at 52917a
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default [
ignores: [
'lib/**',
'web/dist/**',
'dcbor-test-vectors/**',
],
},
...base,
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"./sorts": "./lib/sorts.js",
"./tag": "./lib/tag.js",
"./types": "./lib/types.js",
"./utils": "./lib/utils.js"
"./utils": "./lib/utils.js",
"./writer": "./lib/writer.js"
},
"type": "module",
"repository": {
Expand All @@ -25,13 +26,14 @@
"docs": "typedoc && cd web && npm run build",
"lint": "eslint .",
"start": "cd web && npm start",
"pretest": "npm run build",
"pretest": "npm run build:sourcemap",
"test": "npm run test:noBuild",
"test:noBuild": "c8 node --test test/*.test.js",
"posttest": "tsup --silent",
"test:noBuild": "c8 node --enable-source-maps --test test/*.test.js",
"test:web": "cd web && npm test",
"build": "tsup",
"build:sourcemap": "npm run build -- --sourcemap",
"watch": "tsup --sourcemap --watch src/ --watch test/ --onSuccess 'npm run test:noBuild'",
"build:sourcemap": "npm run build -- --sourcemap inline",
"watch": "tsup --sourcemap inline --watch src/ --watch test/ --onSuccess 'npm run test:noBuild'",
"ci": "npm run clean && npm run build:sourcemap && npm run lint && npm run test:noBuild"
},
"keywords": [
Expand All @@ -50,12 +52,12 @@
"@cto.af/eslint-config": "4.1.5",
"c8": "10.1.2",
"eslint": "9.9.0",
"eslint-plugin-jsdoc": "50.0.1",
"eslint-plugin-jsdoc": "50.2.2",
"eslint-plugin-markdown": "5.1.0",
"rimraf": "^6.0.1",
"tsup": "8.2.4",
"typedoc": "0.26.5",
"typescript-eslint": "8.0.1"
"typedoc": "0.26.6",
"typescript-eslint": "8.2.0"
},
"overrides": {
"@typescript-eslint/utils": "8.0.0-alpha.44",
Expand All @@ -67,7 +69,7 @@
"@typescript-eslint/parser": "8.0.0-alpha.44"
}
},
"packageManager": "pnpm@9.7.0",
"packageManager": "pnpm@9.8.0",
"engines": {
"node": ">=18"
}
Expand Down
120 changes: 60 additions & 60 deletions pnpm-lock.yaml

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

Loading

0 comments on commit d2193da

Please sign in to comment.