Skip to content

Commit db34b11

Browse files
author
Snowflake107
committed
v2
1 parent 158e52e commit db34b11

File tree

12 files changed

+1633
-1198
lines changed

12 files changed

+1633
-1198
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
yarn.lock

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
changelogs.md
1+
changelogs.md
2+
.prettierrc
3+
.github/

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"semi": true,
3+
"singleQuote": false,
4+
"printWidth": 400
5+
}

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
A clean and minimalistic JSDoc theme
44

5-
![Preview](https://skyceil.zyrouge.gq/images/main.png)
5+
![Preview](https://jsdoc.snowflakedev.xyz/images/main.png)
66

7-
# [Documentation](https://skyceil.zyrouge.gq)
7+
# [Documentation](https://jsdoc.snowflakedev.xyz)
88

99
## Install
1010
```bash
@@ -18,12 +18,12 @@ $ jsdoc ./ -t /path/to/skyceil
1818

1919
## Clone
2020
```bash
21-
$ git clone https://github.com/zyrouge/jsdoc-skyceil
21+
$ git clone https://github.com/DevSnowflake/jsdoc-skyceil
2222
```
2323

2424
## Helpful Links
2525

26-
* [Website/Docs](https://skyceil.zyrouge.gq/)
27-
* [Source](https://github.com/zyrouge/jsdoc-skyceil)
28-
* [Changelogs](https://github.com/zyrouge/jsdoc-skyceil/blob/master/changelogs.md)
29-
* [Discord](https://zyrouge.gq/discord)
26+
* [Website/Docs](https://jsdoc.snowflakedev.xyz)
27+
* [Source](https://github.com/DevSnowflake/jsdoc-skyceil)
28+
* [Changelogs](https://github.com/DevSnowflake/jsdoc-skyceil/blob/master/changelogs.md)
29+
* [Discord](https://snowflakedev.xyz/discord)

package.json

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
11
{
22
"name": "jsdoc-skyceil",
3-
"version": "1.0.6",
4-
"description": "A clean and minimalistic JSDoc theme",
3+
"version": "2.0.0",
4+
"description": "A clean and minimalistic JSDoc theme for everyone",
55
"main": "publish.js",
66
"scripts": {
7+
"format": "prettier --write **/*.{js,css}",
78
"test": "jsdoc -R ../jsdoc-skyceil-docs/example/readme.md -d ../jsdoc-skyceil-docs/example -t . --verbose ../jsdoc-skyceil-docs/example/thecode.js"
89
},
910
"repository": {
1011
"type": "git",
11-
"url": "git+https://github.com/zyrouge/jsdoc-skyceil.git"
12+
"url": "git+https://github.com/DevSnowflake/jsdoc-skyceil.git"
1213
},
1314
"keywords": [
1415
"jsdoc",
15-
"theme"
16+
"theme",
17+
"docs",
18+
"docgen",
19+
"jsdoc-theme"
1620
],
1721
"author": "ZYROUGE",
1822
"license": "ISC",
1923
"bugs": {
20-
"url": "https://github.com/zyrouge/jsdoc-skyceil/issues"
24+
"url": "https://github.com/DevSnowflake/jsdoc-skyceil/issues"
2125
},
22-
"homepage": "https://skyceil.zyrouge.gq"
26+
"homepage": "https://jsdoc.snowflakedev.xyz",
27+
"devDependencies": {
28+
"jsdoc": "^3.6.7",
29+
"prettier": "^2.3.0"
30+
}
2331
}

0 commit comments

Comments
 (0)