-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add yarn berry, publish and docs workflows
- Loading branch information
Joel Lefkowitz
committed
Apr 30, 2024
1 parent
ace5c6f
commit c76b9d0
Showing
23 changed files
with
6,390 additions
and
97 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
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,20 +1,24 @@ | ||
{ | ||
"language": "en", | ||
"ignorePaths": [ | ||
".git", | ||
".gitignore", | ||
".husky", | ||
"coverage", | ||
"dist", | ||
"yarn-error.log" | ||
], | ||
"dictionaries": [ | ||
"aws", | ||
"bash", | ||
"en-gb", | ||
"fullstack", | ||
"misc", | ||
"node", | ||
"softwareTerms", | ||
"typescript" | ||
"softwareTerms" | ||
], | ||
"words": ["autofix", "bumpversion", "codacy", "lefkowitz", "xlink"] | ||
"ignorePaths": [".git"], | ||
"words": [ | ||
"autofix", | ||
"bumpversion", | ||
"cliui", | ||
"codacy", | ||
"corepack", | ||
"giphy", | ||
"jsdoc", | ||
"lefkowitz", | ||
"trufflehog", | ||
"xlink" | ||
] | ||
} |
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
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,30 +1,6 @@ | ||
.spago/ | ||
bower_components/ | ||
node_modules/ | ||
venv/ | ||
|
||
build/ | ||
.DS_Store | ||
.yarn/ | ||
coverage/ | ||
dist/ | ||
generated-docs/ | ||
output/ | ||
tests_output/ | ||
|
||
__pycache__/ | ||
.mypy_cache/ | ||
.nx/ | ||
.pytest_cache/ | ||
.terraform/ | ||
|
||
*.coverage | ||
*.dblite | ||
*.egg-info/ | ||
*.env* | ||
*.o | ||
*.pyc | ||
*.types | ||
|
||
.DS_Store | ||
.psc-ide-port | ||
.terraform.lock.hcl | ||
node_modules/ | ||
yarn-error.log |
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,11 @@ | ||
{ | ||
"plugins": ["prettier-plugin-jsdoc"], | ||
"jsdocCapitalizeDescription": true, | ||
"jsdocVerticalAlignment": true, | ||
"overrides": [ | ||
{ | ||
"files": "*.md", | ||
"options": { "printWidth": 120 } | ||
} | ||
] | ||
} |
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,18 @@ | ||
severity: low | ||
exclude: | ||
- message: Giphy links | ||
pattern: media\.giphy\.com | ||
|
||
- message: Shield links | ||
pattern: img\.shields\.io | ||
|
||
- message: Dependencies | ||
paths: | ||
- node_modules | ||
|
||
- message: Tooling outputs | ||
paths: | ||
- docs/dist | ||
- package-lock.json | ||
- yarn-error.log | ||
- yarn.lock |
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,32 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Start", | ||
"type": "node", | ||
"request": "launch", | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node", | ||
"runtimeArgs": ["--transpile-only"], | ||
"program": "${file}", | ||
"cwd": "${workspaceRoot}", | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Test", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js", | ||
"args": [ | ||
"--verbose", | ||
"-i", | ||
"--no-cache", | ||
"--testPathPattern", | ||
"${fileBasename}" | ||
], | ||
"cwd": "${workspaceRoot}", | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen" | ||
} | ||
] | ||
} |
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 @@ | ||
nodeLinker: node-modules |
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
Empty file.
File renamed without changes
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,11 @@ | ||
import * as fs from "fs"; | ||
import * as path from "path"; | ||
import { GlobSync } from "glob"; | ||
|
||
const cwd = path.resolve(__dirname, "../.."); | ||
|
||
[{ src: "docs/images", rel: "images" }] | ||
.concat(new GlobSync("*.md", { cwd }).found.map((src) => ({ src, rel: src }))) | ||
.forEach(({ src, rel }) => { | ||
fs.cpSync(src, `docs/dist/${rel}`, { recursive: true }); | ||
}); |
File renamed without changes.
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,15 @@ | ||
{ | ||
"entryPoints": ["../../src"], | ||
"out": "../dist", | ||
"customCss": "./styles.css", | ||
"cleanOutputDir": true, | ||
"plugin": ["typedoc-material-theme"], | ||
"themeColor": "#BA16B5", | ||
"categorizeByGroup": true, | ||
"groupOrder": ["Functions"], | ||
"categoryOrder": ["Factories", "Aliases", "Validators"], | ||
"navigation": { | ||
"includeGroups": true, | ||
"includeCategories": true | ||
} | ||
} |
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,6 @@ | |
"name": "syllable-counter", | ||
"description": "Syllable counter tree view VSCode extension.", | ||
"version": "1.5.0", | ||
"private": false, | ||
"license": "MIT", | ||
"author": "Joel Lefkowitz", | ||
"repository": "https://github.com/joellefkowitz/syllable-counter", | ||
|
@@ -15,6 +14,7 @@ | |
"syllable", | ||
"counter" | ||
], | ||
"packageManager": "[email protected]", | ||
"metadata": { | ||
"publisher": "npm", | ||
"languages": [ | ||
|
@@ -27,18 +27,23 @@ | |
"lifecycle": "Alpha" | ||
}, | ||
"scripts": { | ||
"prepare": "husky", | ||
"lint": "cspell . --dot && eslint . --fix && tsc --noEmit", | ||
"postinstall": "husky", | ||
"lint": "cspell . --dot --gitignore && eslint . --fix && tsc --noEmit && trufflehog3", | ||
"format": "prettier . --write", | ||
"build": "tsc", | ||
"test": "jest", | ||
"docs": "typedoc" | ||
"docs": "typedoc --options docs/typedoc/typedoc.json && ts-node ./docs/typedoc/assets.ts" | ||
}, | ||
"resolutions": { | ||
"cliui": "^8.0.1", | ||
"strip-ansi": "^6.0.1" | ||
}, | ||
"dependencies": { | ||
"syllable": "^5.0.1", | ||
"vscode": "^1.1.37" | ||
}, | ||
"devDependencies": { | ||
"@types/glob": "^8.1.0", | ||
"@types/jest": "29.0.0", | ||
"@types/node": "^18.11.0", | ||
"@typescript-eslint/eslint-plugin": "^6.20.0", | ||
|
@@ -50,11 +55,12 @@ | |
"husky": "^9.0.0", | ||
"jest": "^29.0.0", | ||
"prettier": "^3.0.0", | ||
"prettier-plugin-jsdoc": "^1.3.0", | ||
"ts-jest": "^29.0.0", | ||
"ts-node": "^10.9.2", | ||
"tslib": "^2.3.0", | ||
"typedoc": "^0.25.7", | ||
"typedoc-material-theme": "^1.0.2", | ||
"typescript": "^5.3.0" | ||
"typescript": "~5.3.0" | ||
} | ||
} |
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,4 +1,3 @@ | ||
export * from "./arrays"; | ||
export * from "./main"; | ||
export * from "./TreeDataProvider"; | ||
export * from "./TreeItem"; | ||
export { activate, deactivate } from "./main"; | ||
export { TreeDataProvider } from "./TreeDataProvider"; | ||
export { TreeItem } from "./TreeItem"; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.