@adobe/helix-importer 1.1.0 → 1.2.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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/renovate.json +3 -0
- package/src/index.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.2.0](https://github.com/adobe/helix-importer/compare/v1.1.0...v1.2.0) (2022-01-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* export new Blocks helper ([#7](https://github.com/adobe/helix-importer/issues/7)) ([0d7bfa7](https://github.com/adobe/helix-importer/commit/0d7bfa7bd7a98a6fb19f6aec6f8e29be0549e53e))
|
|
7
|
+
|
|
1
8
|
# [1.1.0](https://github.com/adobe/helix-importer/compare/v1.0.0...v1.1.0) (2022-01-20)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/renovate.json
ADDED
package/src/index.js
CHANGED
|
@@ -18,6 +18,7 @@ import PageImporterResource from './importer/PageImporterResource.js';
|
|
|
18
18
|
|
|
19
19
|
import FSHandler from './storage/FSHandler.js';
|
|
20
20
|
|
|
21
|
+
import Blocks from './utils/Blocks.js';
|
|
21
22
|
import CSV from './utils/CSV.js';
|
|
22
23
|
import DOMUtils from './utils/DOMUtils.js';
|
|
23
24
|
import FileUtils from './utils/FileUtils.js';
|
|
@@ -35,6 +36,7 @@ export {
|
|
|
35
36
|
PageImporterParams,
|
|
36
37
|
PageImporterResource,
|
|
37
38
|
FSHandler,
|
|
39
|
+
Blocks,
|
|
38
40
|
CSV,
|
|
39
41
|
DOMUtils,
|
|
40
42
|
FileUtils,
|