Skip to content

Commit ce32047

Browse files
committed
1.3.1
1 parent 5234f87 commit ce32047

File tree

5 files changed

+312
-11
lines changed

5 files changed

+312
-11
lines changed

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## Next
3+
## 1.3.1
4+
*2024-05-03*
45
- Allowed support for Eleventy >1.0.0.
56
- Fixed crash occurring when compiling images with no parameters.
67
- Fixed default template arguments not being parsed.

license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ISC License
22

3-
Copyright © 2021 Nixinova
3+
Copyright © 2021–2024 Nixinova
44

55
Permission to use, copy, modify, and/or distribute this software for any
66
purpose with or without fee is hereby granted, provided that the above

package-lock.json

Lines changed: 298 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wikity",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Compile wikitext to HTML: wikitext as a templating language.",
55
"main": "dist/index.js",
66
"scripts": {
@@ -17,13 +17,15 @@
1717
"dist/"
1818
],
1919
"keywords": [
20-
"eleventy",
21-
"eleventy-plugin",
20+
"compiler",
21+
"compilation",
2222
"wikitext",
2323
"mediawiki",
2424
"html",
2525
"template-language",
26-
"templating-language"
26+
"templating-language",
27+
"eleventy",
28+
"eleventy-plugin"
2729
],
2830
"repository": {
2931
"type": "git",
@@ -36,10 +38,10 @@
3638
"homepage": "https://github.com/Nixinova/Wikity#readme",
3739
"license": "ISC",
3840
"dependencies": {
39-
"dateformat": "^4.5.1",
41+
"dateformat": "^4.6.3",
4042
"dedent": "^0.7.0",
4143
"escape-html": "^1.0.3",
42-
"glob": "^7.1.7",
44+
"glob": "^7.2.3",
4345
"html-formatter": "^0.1.9"
4446
},
4547
"peerDependencies": {
@@ -51,7 +53,7 @@
5153
}
5254
},
5355
"devDependencies": {
54-
"@types/node": "ts4.2",
55-
"typescript": "~4.2.4"
56+
"@types/node": "ts5.0",
57+
"typescript": "~5.0.4 <5.1"
5658
}
5759
}

test/.eleventy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const wikity = require('../src/index.js')
1+
const wikity = require('../dist/index.js')
22

33
module.exports = function (eleventyConfig) {
44
eleventyConfig.addPassthroughCopy({ 'images/': 'wiki/images' });

0 commit comments

Comments
 (0)