moonwave-gitlab 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/bun.lock +228 -0
- package/package.json +47 -0
- package/src/argv.ts +74 -0
- package/src/binary.ts +143 -0
- package/src/commands/build.ts +88 -0
- package/src/commands/dev.ts +83 -0
- package/src/getDocusaurusConfig.ts +168 -0
- package/src/index.ts +3 -0
- package/src/prepareProject.ts +492 -0
- package/src/typings/cachedir.d.ts +5 -0
- package/template/home/index.js +84 -0
- package/template/home/index.module.css +51 -0
- package/template/root/babel.config.js +3 -0
- package/template/root/package-lock.json +19700 -0
- package/template/root/package.json +38 -0
- package/template/root/src/css/moonwave.css +10 -0
- package/template/root/static/.nojekyll +0 -0
- package/tsconfig.json +26 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "docs",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"docusaurus": "docusaurus",
|
|
7
|
+
"start": "docusaurus start",
|
|
8
|
+
"build": "docusaurus build",
|
|
9
|
+
"swizzle": "docusaurus swizzle",
|
|
10
|
+
"deploy": "docusaurus deploy",
|
|
11
|
+
"clear": "docusaurus clear",
|
|
12
|
+
"serve": "docusaurus serve",
|
|
13
|
+
"write-translations": "docusaurus write-translations",
|
|
14
|
+
"write-heading-ids": "docusaurus write-heading-ids"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@docusaurus/core": "^3.7.0",
|
|
18
|
+
"@docusaurus/preset-classic": "^3.7.0",
|
|
19
|
+
"@mdx-js/react": "^3.0.1",
|
|
20
|
+
"clsx": "^2.1.1",
|
|
21
|
+
"docusaurus-lunr-search": "^3.6.1",
|
|
22
|
+
"docusaurus-plugin-moonwave-gitlab": "^1.3.3",
|
|
23
|
+
"react": "^18.3.1",
|
|
24
|
+
"react-dom": "^18.3.1"
|
|
25
|
+
},
|
|
26
|
+
"browserslist": {
|
|
27
|
+
"production": [
|
|
28
|
+
">0.5%",
|
|
29
|
+
"not dead",
|
|
30
|
+
"not op_mini all"
|
|
31
|
+
],
|
|
32
|
+
"development": [
|
|
33
|
+
"last 1 chrome version",
|
|
34
|
+
"last 1 firefox version",
|
|
35
|
+
"last 1 safari version"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* stylelint-disable docusaurus/copyright-header */
|
|
2
|
+
/**
|
|
3
|
+
* Any CSS included here will be global. The classic template
|
|
4
|
+
* bundles Infima by default. Infima is a CSS framework designed to
|
|
5
|
+
* work well for content-centric websites.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
.navbar__search {
|
|
9
|
+
margin-left: 1rem;
|
|
10
|
+
}
|
|
File without changes
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "esnext",
|
|
4
|
+
"target": "es2018",
|
|
5
|
+
"noImplicitAny": true,
|
|
6
|
+
"strict": true,
|
|
7
|
+
"noUnusedLocals": true,
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"moduleResolution": "node",
|
|
10
|
+
"sourceMap": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"outDir": "dist",
|
|
13
|
+
"lib": [
|
|
14
|
+
"es2015",
|
|
15
|
+
"es2017",
|
|
16
|
+
"esnext"
|
|
17
|
+
],
|
|
18
|
+
"skipLibCheck": true
|
|
19
|
+
},
|
|
20
|
+
"include": [
|
|
21
|
+
"./src/**/*"
|
|
22
|
+
],
|
|
23
|
+
"exclude": [
|
|
24
|
+
"./node_modules/**/*"
|
|
25
|
+
]
|
|
26
|
+
}
|