forked from mozilla/sphinx-js
-
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 package.json file back to js source directory (mozilla#152)
The ts-check job wants it in the root directory, execution needs it in the source directory. I moved it back to the source directory and symlinked the root file to the source directory one. Hopefully this works okay...
- Loading branch information
Showing
2 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 @@ | ||
sphinx_js/js/package.json |
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 @@ | ||
{ | ||
"name": "sphinx_js", | ||
"type": "module", | ||
"dependencies": { | ||
"tsx": "^4.9.0", | ||
"typedoc": "^0.25.13" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.12.7" | ||
} | ||
} |