@podlite/publisher 0.0.14 → 0.0.15
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.podlite +37 -0
- package/package.json +2 -2
- package/CHANGELOG.md +0 -37
|
@@ -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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podlite/publisher",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Library that powers publishing and CLI tools for the Podlite markup language",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"markup-language"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@podlite/schema": "0.0.
|
|
40
|
+
"@podlite/schema": "0.0.34",
|
|
41
41
|
"crc-32": "^1.2.2",
|
|
42
42
|
"gray-matter": "^4.0.3",
|
|
43
43
|
"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`
|