@nzdjb/static-site-generator 0.7.1 → 0.7.2
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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.2](https://github.com/nzdjb/static-site-generator/compare/v0.7.1...v0.7.2) (2024-06-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* bump braces from 3.0.2 to 3.0.3 ([#429](https://github.com/nzdjb/static-site-generator/issues/429)) ([9793bd9](https://github.com/nzdjb/static-site-generator/commit/9793bd9b2a593793faebebe58ee939ae1669df1a))
|
|
9
|
+
* bump glob from 10.3.12 to 10.3.14 ([#400](https://github.com/nzdjb/static-site-generator/issues/400)) ([8ca3aac](https://github.com/nzdjb/static-site-generator/commit/8ca3aac0bf527842f9286858f15a46de5c35d0c2))
|
|
10
|
+
* bump glob from 10.3.14 to 10.3.15 ([#403](https://github.com/nzdjb/static-site-generator/issues/403)) ([54ce9cd](https://github.com/nzdjb/static-site-generator/commit/54ce9cd84b7c820c06d9b7d52da8e64c71f3ca01))
|
|
11
|
+
* bump glob from 10.3.16 to 10.4.0 ([#411](https://github.com/nzdjb/static-site-generator/issues/411)) ([03feef6](https://github.com/nzdjb/static-site-generator/commit/03feef6298777b2747e6bf5ac945421c68b2fd5c))
|
|
12
|
+
* bump glob from 10.4.0 to 10.4.1 ([#412](https://github.com/nzdjb/static-site-generator/issues/412)) ([24746d5](https://github.com/nzdjb/static-site-generator/commit/24746d51a926fb45d2c5012f4fec0bb4ec978f2d))
|
|
13
|
+
|
|
3
14
|
## [0.7.1](https://github.com/nzdjb/static-site-generator/compare/v0.7.0...v0.7.1) (2024-04-22)
|
|
4
15
|
|
|
5
16
|
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ At present, a directory and two files are needed:
|
|
|
17
17
|
```
|
|
18
18
|
* content can alternatively be read from a file with contentFile. This is mutually exclusive with content.
|
|
19
19
|
* author and published are optional, defaulting to empty string and true, respectively.
|
|
20
|
-
* content
|
|
20
|
+
* content and contentFile support Markdown.
|
|
21
21
|
* A template file, which should be a Handlebars HTML file.
|
|
22
22
|
* An output file, which will be the location the output is written.
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nzdjb/static-site-generator",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Static site generator.",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"repository": "https://github.com/nzdjb/static-site-generator",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@types/node": "^20.1.0",
|
|
19
19
|
"@types/sanitize-html": "^2.9.0",
|
|
20
20
|
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
21
|
-
"esbuild": "^0.
|
|
21
|
+
"esbuild": "^0.21.0",
|
|
22
22
|
"eslint": "^8.0.1",
|
|
23
23
|
"eslint-config-prettier": "^9.0.0",
|
|
24
24
|
"eslint-config-standard-with-typescript": "latest",
|