-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from bids-standard/ci/nowd
Remove working directory directives
- Loading branch information
Showing
5 changed files
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[codespell] | ||
skip = deno.lock,data | ||
ignore-words-list = particpants |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"tasks": { | ||
"dev": "../bids-validator/build.ts && deno run -A --node-modules-dir npm:vite", | ||
"build": "../bids-validator/build.ts && deno run -A --node-modules-dir npm:vite build", | ||
"dev": "../build.ts && deno run -A --node-modules-dir npm:vite", | ||
"build": "../build.ts && deno run -A --node-modules-dir npm:vite build", | ||
"preview": "deno run -A --node-modules-dir npm:vite preview", | ||
"serve": "deno run --allow-net --allow-read https://deno.land/[email protected]/http/file_server.ts dist/" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ import React, { useState } from "react" | |
import "./App.css" | ||
import { directoryOpen } from "https://esm.sh/[email protected]" | ||
import { fileListToTree, validate } from "../dist/validator/main.js" | ||
import type { ValidationResult } from "../../bids-validator/src/types/validation-result.ts" | ||
import type { ValidationResult } from "../../src/types/validation-result.ts" | ||
import { Collapse } from "./Collapse.tsx" | ||
import { Summary } from "./Summary.tsx" | ||
|
||
|