@thegetty/quire-cli 0.20.1 → 0.20.4

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.
Files changed (57) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/bin/.DS_Store +0 -0
  3. package/bin/go-iiif/.DS_Store +0 -0
  4. package/bin/index.js +1 -1
  5. package/bin/starters/.DS_Store +0 -0
  6. package/bin/starters/default/.gitignore +14 -0
  7. package/bin/starters/default/config/_default/config.yml +53 -0
  8. package/bin/starters/default/config/development/config.yml +14 -0
  9. package/bin/themes/default/.gitignore +13 -0
  10. package/bin/themes/default/layouts/contents/single.html +2 -2
  11. package/bin/themes/default/layouts/data/search-index.html +1 -1
  12. package/bin/themes/default/layouts/partials/cite-this.html +2 -2
  13. package/bin/themes/default/layouts/partials/contents-list/closing-tags.html +10 -3
  14. package/bin/themes/default/layouts/partials/contents-list/contents-list.html +24 -9
  15. package/bin/themes/default/layouts/partials/contents-list/file-dir.html +7 -0
  16. package/bin/themes/default/layouts/partials/contents-list/file-path.html +10 -0
  17. package/bin/themes/default/layouts/partials/contents-list.html +207 -0
  18. package/bin/themes/default/layouts/partials/figure-caption.html +1 -0
  19. package/bin/themes/default/layouts/partials/figure-fallback.html +31 -0
  20. package/bin/themes/default/layouts/partials/figure-image.html +44 -0
  21. package/bin/themes/default/layouts/partials/figure-label.html +15 -0
  22. package/bin/themes/default/layouts/partials/figure-soundcloud.html +25 -0
  23. package/bin/themes/default/layouts/partials/figure-table.html +44 -0
  24. package/bin/themes/default/layouts/partials/figure-vimeo.html +24 -0
  25. package/bin/themes/default/layouts/partials/figure-website.html +21 -0
  26. package/bin/themes/default/layouts/partials/figure-youtube.html +23 -0
  27. package/bin/themes/default/layouts/partials/figures/media-types/vimeo.html +3 -1
  28. package/bin/themes/default/layouts/partials/menu.html +1 -1
  29. package/bin/themes/default/layouts/partials/page-bibliography.html +1 -1
  30. package/bin/themes/default/layouts/shortcodes/q-bibliography.html +8 -8
  31. package/bin/themes/default/layouts/shortcodes/q-figure-new.html +70 -0
  32. package/bin/themes/default/package-lock.json +13198 -0
  33. package/bin/themes/default/source/css/components/quire-contents-list.scss +22 -18
  34. package/bin/themes/default/source/css/print.scss +1 -1
  35. package/bin/themes/default/source/js/popup.js +14 -10
  36. package/bin/themes/default/static/img/icons/baseline-headset-24px.png +0 -0
  37. package/bin/themes/default/static/img/icons/baseline-videocam-24px.png +0 -0
  38. package/bin/themes/default/static/img/icons/baseline-website-24px.png +0 -0
  39. package/bin/themes/default/tests/.gitkeep +0 -0
  40. package/bin/themes/default/tests/e2e/.eslintrc.js +9 -0
  41. package/bin/themes/default/tests/e2e/fixtures/blns.json +483 -0
  42. package/bin/themes/default/tests/e2e/plugins/index.js +22 -0
  43. package/bin/themes/default/tests/e2e/specs/quire-contents.spec.js +52 -0
  44. package/bin/themes/default/tests/e2e/specs/quire-contributors.spec.js +66 -0
  45. package/bin/themes/default/tests/e2e/specs/quire-entry.spec.js +104 -0
  46. package/bin/themes/default/tests/e2e/specs/quire-essay.spec.js +105 -0
  47. package/bin/themes/default/tests/e2e/specs/quire-menu.spec.js +38 -0
  48. package/bin/themes/default/tests/e2e/specs/quire-modal.spec.js +69 -0
  49. package/bin/themes/default/tests/e2e/specs/quire-next-back-buttons.spec.js +27 -0
  50. package/bin/themes/default/tests/e2e/specs/quire-page.spec.js +28 -0
  51. package/bin/themes/default/tests/e2e/specs/quire-search.spec.js +48 -0
  52. package/bin/themes/default/tests/e2e/specs/quire-splash.spec.js +38 -0
  53. package/bin/themes/default/tests/e2e/support/commands.js +25 -0
  54. package/bin/themes/default/tests/e2e/support/index.js +20 -0
  55. package/package.json +1 -1
  56. package/bin/themes/default/static/css/application.css +0 -12072
  57. package/bin/themes/default/static/js/application.js +0 -92
package/CHANGELOG.md ADDED
@@ -0,0 +1,46 @@
1
+ # Quire CLI Change Log
2
+
3
+ All notable changes to the `quire-cli` will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.18.0] - 2020-02-03
11
+ ### Added
12
+ + Rollup configuration for minification
13
+ + Jest Test (tests run through each function that is included in the CLI)
14
+ + CircleCI configuration to run Jest Tests automatically on each pull request
15
+ + async/await instead of .then().catch()
16
+ + function to determine what GIT protocol to use to prevent permissions warnings
17
+ + eslint configuration
18
+
19
+ ### Changed
20
+ + Documentation to reflect changes to install and use of CLI
21
+ + Version Number
22
+ + Replace kindlegen package with kindlegen from user-installed Kindle Previewer
23
+
24
+ ### Removed
25
+ - All author information from files
26
+
27
+ ### Security
28
+ * Updated NodeJS/NPM dependencies
29
+
30
+ ### Fixed
31
+ - fix id formatting for non h1 ids
32
+
33
+ ## [0.17.0] - 2019-08-01
34
+ ### Added
35
+ + Prettier formatting
36
+
37
+ ### Changed
38
+ + Ora to use string instead of arrays
39
+ + Version Number
40
+
41
+ ### Fixed
42
+ - font issue
43
+
44
+ [Unreleased]: https://github.com/gettypubs/quire-cli/compare/v0.18.0...HEAD
45
+ [0.18.0]: https://github.com/gettypubs/quire-cli/compare/v0.17.0...v0.18.0
46
+ [0.17.0]: https://github.com/gettypubs/quire-cli/releases/tag/v0.17.0
package/bin/.DS_Store ADDED
Binary file
Binary file