pfwr 0.6.0 → 0.7.0

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/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "pfwr",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "The last markdown to HTML slide show generator you need",
5
- "main": "dist/index.js",
5
+ "module": "dist/index.js",
6
6
  "bin": "./bin/cli.js",
7
+ "type": "module",
7
8
  "scripts": {
8
9
  "all": "npm run bundle && npm run test",
9
10
  "bundle": "rollup -c",
@@ -26,33 +27,35 @@
26
27
  "bin"
27
28
  ],
28
29
  "devDependencies": {
29
- "@rollup/plugin-commonjs": "^17.0.0",
30
- "@rollup/plugin-json": "^4.1.0",
31
- "@rollup/plugin-node-resolve": "^11.0.1",
32
- "chokidar-cli": "^2.1.0",
33
- "js-yaml": "^4.1.0",
34
- "mdast-comment-marker": "^1.1.2",
35
- "rehype-document": "^5.1.0",
36
- "rehype-format": "^3.1.0",
37
- "rehype-meta": "^2.0.0",
38
- "rehype-stringify": "^8.0.0",
39
- "rehype-wrap": "^1.0.10",
40
- "remark-breaks": "^2.0.2",
41
- "remark-emoji": "^2.2.0",
42
- "remark-external-links": "^8.0.0",
43
- "remark-frontmatter": "^3.0.0",
44
- "remark-gfm": "^1.0.0",
45
- "remark-parse": "^9.0.0",
46
- "remark-rehype": "^8.1.0",
47
- "rollup": "^2.36.1",
48
- "rollup-plugin-string": "^3.0.0",
49
- "twemoji": "^13.0.2",
50
- "unified": "^9.2.1",
51
- "unist-util-visit-parents": "^3.1.1",
52
- "vfile": "^4.2.1"
30
+ "@rollup/plugin-commonjs": "^23.0.0",
31
+ "@rollup/plugin-json": "^5.0.0",
32
+ "chokidar-cli": "^3.0.0",
33
+ "rollup": "^2.79.1",
34
+ "rollup-plugin-string": "^3.0.0"
35
+ },
36
+ "engines": {
37
+ "node": ">= 16"
53
38
  },
54
39
  "dependencies": {
40
+ "js-yaml": "^4.1.0",
41
+ "mdast-comment-marker": "^2.1.0",
55
42
  "mri": "^1.1.6",
56
- "opener": "^1.5.2"
43
+ "opener": "^1.5.2",
44
+ "rehype-document": "^6.1.0",
45
+ "rehype-format": "^4.0.1",
46
+ "rehype-meta": "^3.3.0",
47
+ "rehype-stringify": "^9.0.3",
48
+ "rehype-wrap": "^1.1.0",
49
+ "remark-breaks": "^3.0.2",
50
+ "remark-emoji": "^3.0.2",
51
+ "remark-external-links": "^9.0.1",
52
+ "remark-frontmatter": "^4.0.1",
53
+ "remark-gfm": "^3.0.1",
54
+ "remark-parse": "^10.0.1",
55
+ "remark-rehype": "^10.1.0",
56
+ "twemoji": "^14.0.2",
57
+ "unified": "^10.1.2",
58
+ "unist-util-visit-parents": "^5.1.1",
59
+ "vfile": "^5.3.5"
57
60
  }
58
61
  }
package/CHANGELOG.md DELETED
@@ -1,51 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to [pfwr](https://github.com/nikku/pfwr) are documented here. We use [semantic versioning](http://semver.org/) for releases.
4
-
5
- ## Unreleased
6
-
7
- ___Note:__ Yet to be released changes appear here._
8
-
9
- ## 0.6.0
10
-
11
- * `FEAT`: create presentation from template if it does not exist yet
12
-
13
- ## 0.5.1
14
-
15
- * `FIX`: add `og` and `twitter` meta tags to presentations
16
- * `DEPS`: bump dependencies
17
-
18
- ## 0.5.0
19
-
20
- * `FEAT`: add navigation widget
21
- * `FEAT`: document keyboard shortcuts on mouse navigation widget
22
- * `FEAT`: change slide on URL hash changes
23
- * `FEAT`: recognize `Spacebar` to go to next slide
24
-
25
- ## 0.4.1
26
-
27
- * `CHORE`: minor additional color improvements
28
-
29
- ## 0.4.0
30
-
31
- * `FEAT`: add `eco` theme
32
- * `CHORE`: slightly improve colors
33
-
34
- ## 0.3.1
35
-
36
- * `FIX`: mark boolean cli switches
37
-
38
- ## 0.3.0
39
-
40
- * `FEAT`: add `--open` switch
41
-
42
- ## 0.2.0
43
-
44
- _First recorded release._
45
-
46
- * `FEAT`: make output file optional
47
- * `FEAT`: add watch mode (`--watch`) to rebuild on changes
48
-
49
- ## ...
50
-
51
- Check `git log` for earlier history.