Change markdownlint script executable, fix removed link (#3669)

This commit is contained in:
James Stuckey Weber 2023-09-14 19:07:01 -04:00 committed by GitHub
parent ad0bc6bd50
commit e1442fcc68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -290,6 +290,8 @@ export type CalculationOperator = '+' | '-' | '*' | '/';
The JS API representation of a Sass [`CalculationOperation`].
[`CalculationOperation`]: ../spec/types/calculation.md#types
```ts
export class CalculationOperation implements ValueObject {
```

View File

@ -16,7 +16,7 @@
"typedoc": "npm run tangle && npx typedoc --treatWarningsAsErrors js-api-doc/index.d.ts",
"tangle": "npx ts-node tool/tangle.ts",
"untangle": "npx ts-node tool/untangle.ts",
"markdownlint": "npx markdownlint-cli '**/*.md' '*.md' --ignore 'node_modules/**'",
"markdownlint": "npx markdownlint-cli2 '**/*.md' '*.md' --ignore 'node_modules/**'",
"fix": "npm run update-toc && npm run markdownlint -- --fix && npm run tangle && gts fix && npm run untangle",
"test": "npm run tangle && gts lint && tsc --noEmit && npm run toc-check && npm run link-check && npm run js-api-doc-check && npm run typedoc"
},