@podlite/publisher 0.0.14 → 0.0.16

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,37 @@
1
+ # @podlite/publisher
2
+
3
+ =head1 Upcoming
4
+
5
+ =head1 0.0.11
6
+
7
+ =item implement Selector for `doc:<NAME|ID>`
8
+
9
+ =head1 0.0.6
10
+
11
+ =item implement resolvers for `=include` block
12
+
13
+ =head1 0.0.5
14
+
15
+ =item initial support for `=Include` blocks and Selectors (https://podlite.org/specification#Selectors)
16
+ =item add support for embeded data using `=data` block
17
+ =item refactor existed and added new plugins:
18
+ - docs-injector-plugin
19
+ - dump-pages-plugin
20
+ - include-resolve-plugin.spec
21
+ - prev-next-plugin
22
+
23
+ =head1 0.0.4
24
+
25
+ =item add template configuration attribute for site: `:templateFile<file path>`
26
+ =item fix publishRecord
27
+
28
+ =head1 0.0.3
29
+
30
+ =item fix deps
31
+
32
+ =head1 0.0.1
33
+
34
+ =item plugins :breadcrumb-plugin, links-plugin, terms-index-plugin
35
+ =item support tempating for docs
36
+ =item fix processing templates
37
+ =item add helper `isExistsDocBlocks`
package/package.json CHANGED
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "@podlite/publisher",
3
- "version": "0.0.14",
4
- "description": "Library that powers publishing and CLI tools for the Podlite markup language",
3
+ "version": "0.0.16",
4
+ "description": "Publishing toolkit for Podlite transform documents to HTML, generate sites",
5
5
  "main": "lib/index.js",
6
+ "homepage": "https://podlite.org",
7
+ "bugs": {
8
+ "url": "https://github.com/podlite/podlite/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/podlite/podlite.git",
13
+ "directory": "packages/podlite-publisher"
14
+ },
6
15
  "license": "MIT",
7
16
  "funding": {
8
17
  "type": "opencollective",
@@ -31,13 +40,20 @@
31
40
  "test": "yarn g:jest --passWithNoTests"
32
41
  },
33
42
  "keywords": [
34
- "markdown",
35
43
  "podlite",
36
- "markup",
37
- "markup-language"
44
+ "publisher",
45
+ "publishing",
46
+ "html",
47
+ "markup-to-html",
48
+ "static-site",
49
+ "documentation",
50
+ "converter",
51
+ "generator",
52
+ "markdown",
53
+ "transform"
38
54
  ],
39
55
  "dependencies": {
40
- "@podlite/schema": "0.0.33",
56
+ "@podlite/schema": "0.0.35",
41
57
  "crc-32": "^1.2.2",
42
58
  "gray-matter": "^4.0.3",
43
59
  "iso_9": "^1.0.4",
package/CHANGELOG.md DELETED
@@ -1,37 +0,0 @@
1
- # @podlite/publisher
2
-
3
- ## Upcoming
4
-
5
- ## 0.0.11
6
-
7
- - implement Selector for `doc:<NAME|ID>`
8
-
9
- ## 0.0.6
10
-
11
- - implement resolvers for `=include` block
12
-
13
- ## 0.0.5
14
-
15
- - initial support for `=Include` blocks and Selectors (https://podlite.org/specification#Selectors)
16
- - add support for embeded data using `=data` block
17
- - refactor existed and added new plugins:
18
- - docs-injector-plugin
19
- - dump-pages-plugin
20
- - include-resolve-plugin.spec
21
- - prev-next-plugin
22
-
23
- ## 0.0.4
24
-
25
- - add template configuration attribute for site: `:templateFile<file path>`
26
- - fix publishRecord
27
-
28
- ## 0.0.3
29
-
30
- - fix deps
31
-
32
- ## 0.0.1
33
-
34
- - plugins :breadcrumb-plugin, links-plugin, terms-index-plugin
35
- - support tempating for docs
36
- - fix processing templates
37
- - add helper `isExistsDocBlocks`