-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
2,858 additions
and
53 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ dist | |
angular.json | ||
|
||
# dependencies | ||
/node_modules | ||
node_modules | ||
|
||
# IDEs and editors | ||
/.idea | ||
|
Large diffs are not rendered by default.
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,6 @@ | ||
{ | ||
"dependencies": { | ||
"@compodoc/compodoc": "1.0.9", | ||
"puppeteer": "18.1.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
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 |
---|---|---|
|
@@ -19,10 +19,11 @@ if [ "$?" != "0" ]; then | |
npm install @compodoc/[email protected] | ||
fi | ||
|
||
rm -fr $output/documentation.json $output/fragments | ||
rm -fr $output/documentation.json $output/fragments src/jigsaw/mobile-components | ||
./node_modules/.bin/compodoc src/jigsaw -p tsconfig.json --silent --disableSourceCode \ | ||
--disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks \ | ||
--disableRoutesGraph --exportFormat json --output $output | ||
git checkout src/jigsaw/mobile-components | ||
if [ "$?" != "0" ]; then | ||
echo "ERROR: cannot generate documentation(json)!" | ||
exit 1 | ||
|
@@ -34,4 +35,5 @@ if [ "$?" != "0" ]; then | |
echo "ERROR: parse documentation error!" | ||
exit 1 | ||
fi | ||
rm -fr $output/documentation.json | ||
chmod 755 -R $output |
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,3 +1,4 @@ | ||
// npm i [email protected] | ||
const puppeteer = require('puppeteer'); | ||
|
||
const user = process.env.GITEE_USER, pwd = process.env.GITEE_PWD; | ||
|
Submodule jigsaw
deleted from
c0fd37
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