Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Use npm workspaces. #259

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
5 changes: 1 addition & 4 deletions .github/workflows/tests-functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
run: |
echo "| Testing against dependencies locked by package-lock.json"
npm install
cd ./test
npm install
cd ..
npm test
npm test --workspaces
env:
CI: true
5 changes: 1 addition & 4 deletions .github/workflows/tests-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ jobs:
echo "| caused by deps violating semantic versioning."
mv package-lock.json package-lock-ignored.json
npm install
cd ./test
npm install
cd ..
npm test
npm test --workspaces
env:
CI: true
135 changes: 135 additions & 0 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "glossarify-md",
"version": "6.3.2",
"workspaces": [
"./test"
],
"description": "Scans markdown files for glossary terms and replaces each occurrence with a link to a glossary file.",
"author": {
"name": "Andreas Martin"
Expand Down
Loading