@hydejs/hydejs 0.1.0 → 0.1.8
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.
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Publish Package
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- 'v*'
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
id-token: write
|
|
9
|
+
contents: read
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
publish:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
- uses: actions/setup-node@v4
|
|
17
|
+
with:
|
|
18
|
+
node-version: '20'
|
|
19
|
+
registry-url: 'https://registry.npmjs.org'
|
|
20
|
+
|
|
21
|
+
- run: npm install
|
|
22
|
+
- run: npm publish --access public
|
|
@@ -6,13 +6,15 @@ permalink: /about/
|
|
|
6
6
|
|
|
7
7
|
This is the base HydeJS theme. You can find out more info about customizing your HydeJS theme, as well as basic HydeJS usage documentation at [github.com/Hyde-JS/hydejs](https://github.com/Hyde-JS/hydejs)
|
|
8
8
|
|
|
9
|
-
You can find the source code for Minima at GitHub:
|
|
9
|
+
You can find the source code for Minima (the original inspiration for this theme) at GitHub:
|
|
10
10
|
[jekyll](https://github.com/jekyll) /
|
|
11
11
|
[minima](https://github.com/jekyll/minima)
|
|
12
12
|
|
|
13
|
-
You can find the source code for HydeJS at GitHub:
|
|
13
|
+
You can find the source code for HydeJS and this theme at GitHub:
|
|
14
14
|
[Hyde-JS][hydejs-organization] /
|
|
15
15
|
[hydejs](https://github.com/Hyde-JS/hydejs)
|
|
16
16
|
|
|
17
|
+
This theme is available as an NPM package:
|
|
18
|
+
[@hydejs/theme-default](https://www.npmjs.com/package/@hydejs/theme-default)
|
|
17
19
|
|
|
18
20
|
[hydejs-organization]: https://github.com/Hyde-JS
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hydejs/theme-default",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "The default theme for HydeJS, providing full Jekyll compatibility and modern features.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"hydejs",
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/Hyde-JS/
|
|
16
|
-
"directory": "jekyll-themes/hydejs-theme-default"
|
|
15
|
+
"url": "git+https://github.com/Hyde-JS/theme-default.git"
|
|
17
16
|
}
|
|
18
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hydejs/hydejs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Static site generator using Nodejs",
|
|
5
5
|
"homepage": "https://github.com/Hyde-JS/hydejs#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@hydejs/theme-default": "^0.1.
|
|
33
|
+
"@hydejs/theme-default": "^0.1.4",
|
|
34
34
|
"browser-sync": "^3.0.4",
|
|
35
35
|
"chokidar": "^5.0.0",
|
|
36
36
|
"commander": "^15.0.0",
|