Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Deno
uses: denoland/setup-deno@v2.0.4
with:
deno-version: 2.7.14
deno-version: 2.9.2

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
10 changes: 8 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@
"check": "deno check scripts/**/*.ts tests/**/*.ts",
"test": "deno test --allow-read --allow-write --allow-env=READABLE_STREAM tests",
"test:shacl": "python3 scripts/validate_shacl.py",
"conformance:js": "deno run --node-modules-dir=auto --allow-read --allow-write=/tmp --allow-run=git --allow-env=READABLE_STREAM,YARGS_MIN_NODE_VERSION,YARGS_DISABLE_WRAP,_,SHELL,ZSH_NAME,BASH_NAME,CI,FORCE_COLOR,TRAVIS,CIRCLECI,APPVEYOR,GITLAB_CI,CI_NAME,TEAMCITY_VERSION,TERM_PROGRAM,TERM_PROGRAM_VERSION,TERM,COLORTERM,COMUNICA_CONFIG,LC_ALL,LC_MESSAGES,LANG,LANGUAGE,NODE_ENV scripts/run_shacl_engine_conformance.ts",
"conformance:jena": "deno run --allow-read --allow-write=/tmp --allow-run=git,shacl --allow-env=READABLE_STREAM scripts/run_jena_shacl_conformance.ts",
"conformance:compare": "deno run --allow-read scripts/compare_shacl_receipts.ts",
"release:set-version": "deno run --allow-read --allow-write scripts/release_set_version.ts",
"release:validate": "deno run --allow-read --allow-run=git --allow-env=READABLE_STREAM scripts/release_validate.ts",
"ci": "deno task fmt:check && deno task lint && deno task check && deno task test && deno task test:shacl && deno task release:validate"
"ci": "deno task fmt:check && deno task lint && deno task check && deno task test && deno task test:shacl && deno task conformance:js && deno task release:validate"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/path": "jsr:@std/path@1",
"n3": "npm:n3@2.0.3"
"n3": "npm:n3@2.0.3",
"shacl-engine": "npm:shacl-engine@1.1.2",
"shacl-engine/sparql": "npm:shacl-engine@1.1.2/sparql.js"
},
"nodeModulesDir": "auto",
"exclude": ["notes/**", "**/*.md"],
"fmt": {
"proseWrap": "preserve",
Expand Down
Loading
Loading