├── .backstage ├── changelog.cjs ├── publish.js ├── vendor.js └── version.js ├── .github └── workflows │ ├── integration-test.yml │ ├── release.yml │ └── test-node.yml ├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.adoc ├── bookshop-hero.png ├── bookshop-packages.json ├── generator-plugins └── jekyll │ └── jekyll-bookshop │ ├── .rubocop.yml │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── jekyll-bookshop.gemspec │ ├── lib │ ├── jekyll-bookshop.rb │ └── jekyll-bookshop │ │ ├── opener.rb │ │ ├── tags │ │ ├── bookshop-common-tag.rb │ │ ├── bookshop-include-tag.rb │ │ ├── bookshop-tag.rb │ │ ├── browser-tag.rb │ │ ├── component-browser-tag.rb │ │ └── style-tag.rb │ │ └── version.rb │ └── spec │ ├── browser_spec.rb │ ├── data_spec.rb │ ├── fixture_bookshop │ ├── bookshop │ │ └── bookshop.config.js │ ├── components │ │ ├── block │ │ │ ├── block.bookshop.toml │ │ │ ├── block.jekyll.html │ │ │ └── block.scss │ │ └── item │ │ │ ├── item.bookshop.toml │ │ │ ├── item.jekyll.html │ │ │ └── item.scss │ └── shared │ │ ├── jekyll │ │ └── helper.jekyll.html │ │ └── styles │ │ └── global.scss │ ├── fixture_site │ ├── _data │ │ └── labels.yml │ ├── _layouts │ │ └── default.html │ ├── index.html │ └── index.scss │ ├── helpers │ └── test_helpers.rb │ └── output_spec.rb ├── guides ├── browser.adoc ├── conventions.adoc ├── editor-links.adoc ├── eleventy.adoc ├── hugo-extra-files.md ├── hugo.adoc ├── jekyll.adoc ├── live-editing.adoc ├── migration.adoc ├── sveltekit.adoc └── visual-data-bindings.adoc ├── hugo └── v3 │ ├── config.toml │ ├── core │ ├── bookshop.html │ ├── bookshop_bindings.html │ ├── bookshop_component_browser.html │ ├── bookshop_partial.html │ ├── bookshop_scss.html │ ├── errors │ │ ├── bad_bookshop_tag.html │ │ └── err.html │ └── helpers │ │ ├── component.html │ │ ├── component_key.html │ │ ├── flat_component_key.html │ │ ├── partial.html │ │ └── partial_key.html │ └── go.mod ├── javascript-modules ├── .npmrc ├── bookshop-sass │ ├── .npmrc │ ├── README.md │ ├── main.js │ ├── main.test.js │ └── package.json ├── browser │ ├── .npmrc │ ├── .test │ │ ├── fixtures │ │ │ ├── bookshop │ │ │ │ └── bookshop.config.js │ │ │ └── components │ │ │ │ ├── block │ │ │ │ ├── block.bookshop.toml │ │ │ │ ├── block.jekyll.html │ │ │ │ └── block.scss │ │ │ │ └── card │ │ │ │ ├── card.bookshop.toml │ │ │ │ ├── card.jekyll.html │ │ │ │ └── card.scss │ │ └── manual │ │ │ └── index.html │ ├── cli.js │ ├── lib │ │ ├── app │ │ │ ├── app.js │ │ │ ├── sockets.js │ │ │ └── svelte │ │ │ │ ├── browser.svelte │ │ │ │ └── lib │ │ │ │ ├── code-editor │ │ │ │ ├── editor.svelte │ │ │ │ └── helpers.js │ │ │ │ ├── helpers-key.test.js │ │ │ │ ├── helpers.js │ │ │ │ ├── icons.js │ │ │ │ ├── info-pane.svelte │ │ │ │ └── library.svelte │ │ └── build │ │ │ ├── browserServer.js │ │ │ ├── materialIconPlugin.js │ │ │ └── util.js │ ├── main.js │ └── package.json ├── builder │ ├── .npmrc │ ├── .test │ │ ├── common.js │ │ ├── fixtures │ │ │ ├── bookshop │ │ │ │ ├── bookshop.config.js │ │ │ │ └── test-plugin.js │ │ │ ├── components │ │ │ │ ├── card │ │ │ │ │ ├── card.bookshop.toml │ │ │ │ │ ├── card.jekyll.html │ │ │ │ │ └── card.scss │ │ │ │ └── clash │ │ │ │ │ ├── clash.bookshop.toml │ │ │ │ │ ├── clash.jekyll.html │ │ │ │ │ └── clash.scss │ │ │ └── shared │ │ │ │ └── jekyll │ │ │ │ └── title.jekyll.html │ │ └── second-fixtures │ │ │ └── components │ │ │ ├── clash │ │ │ ├── clash.bookshop.toml │ │ │ ├── clash.jekyll.html │ │ │ └── clash.scss │ │ │ └── dos │ │ │ ├── dos.bookshop.toml │ │ │ ├── dos.jekyll.html │ │ │ └── dos.scss │ ├── lib │ │ ├── bookshopHelper.js │ │ └── plugins │ │ │ ├── bookshopComponentPlugin.js │ │ │ ├── bookshopComponentPlugin.test.js │ │ │ ├── bookshopConfigPlugin.js │ │ │ ├── bookshopConfigPlugin.test.js │ │ │ ├── bookshopFilePlugin.js │ │ │ ├── bookshopFilePlugin.test.js │ │ │ ├── bookshopGlobPlugin.js │ │ │ └── bookshopGlobPlugin.test.js │ ├── main.js │ ├── main.test.js │ └── package.json ├── engines │ ├── astro-engine │ │ ├── .npmrc │ │ ├── build.js │ │ ├── build.test.js │ │ ├── lib │ │ │ ├── builder.js │ │ │ ├── engine.js │ │ │ └── modules │ │ │ │ ├── actions.js │ │ │ │ ├── assets.js │ │ │ │ ├── client-router.astro │ │ │ │ ├── content.js │ │ │ │ ├── i18n.js │ │ │ │ ├── image.astro │ │ │ │ ├── middleware.js │ │ │ │ ├── picture.astro │ │ │ │ └── transitions.js │ │ ├── main.js │ │ ├── main.test.js │ │ └── package.json │ ├── eleventy-engine │ │ ├── .npmrc │ │ ├── build.js │ │ ├── lib │ │ │ ├── builder.js │ │ │ ├── engine.js │ │ │ ├── engine.test.js │ │ │ ├── plugins │ │ │ │ ├── loop_context.js │ │ │ │ ├── markdownify.js │ │ │ │ ├── slug-plugin.js │ │ │ │ ├── unbind.js │ │ │ │ └── url.js │ │ │ ├── translateLiquid.js │ │ │ └── translateLiquid.test.js │ │ ├── main.js │ │ ├── main.test.js │ │ └── package.json │ ├── hugo-engine │ │ ├── .npmrc │ │ ├── bookshop-hugo-templates │ │ │ ├── bookshop.html │ │ │ ├── bookshop_bindings.html │ │ │ ├── bookshop_component_browser.html │ │ │ ├── bookshop_partial.html │ │ │ ├── bookshop_scss.html │ │ │ ├── errors │ │ │ │ ├── bad_bookshop_tag.html │ │ │ │ └── err.html │ │ │ └── helpers │ │ │ │ ├── component.html │ │ │ │ ├── component_key.html │ │ │ │ ├── flat_component_key.html │ │ │ │ ├── partial.html │ │ │ │ └── partial_key.html │ │ ├── build.js │ │ ├── full-hugo-renderer │ │ │ ├── build.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ └── wasm_exec.js │ │ ├── lib │ │ │ ├── builder.js │ │ │ ├── engine.js │ │ │ ├── engine.test.js │ │ │ ├── hugoIdentifierParser.js │ │ │ ├── hugoIdentifierParser.test.js │ │ │ ├── translateTextTemplate.js │ │ │ └── translateTextTemplate.test.js │ │ ├── main.js │ │ ├── main.test.js │ │ ├── package.json │ │ └── prep__test__.js │ ├── jekyll-engine │ │ ├── .npmrc │ │ ├── build.js │ │ ├── lib │ │ │ ├── builder.js │ │ │ ├── engine.js │ │ │ ├── engine.test.js │ │ │ ├── plugins │ │ │ │ ├── emulate-jekyll.js │ │ │ │ ├── jsonify.js │ │ │ │ ├── local.js │ │ │ │ ├── loop_context.js │ │ │ │ ├── markdownify.js │ │ │ │ ├── relative_url.js │ │ │ │ ├── slugify-plugin.js │ │ │ │ └── unbind.js │ │ │ ├── translateLiquid.js │ │ │ └── translateLiquid.test.js │ │ ├── main.js │ │ ├── main.test.js │ │ └── package.json │ └── svelte-engine │ │ ├── .npmrc │ │ ├── .test │ │ └── fixtures │ │ │ ├── bookshop │ │ │ └── bookshop.config.js │ │ │ └── components │ │ │ └── card │ │ │ ├── card.bookshop.toml │ │ │ ├── card.scss │ │ │ └── card.svelte │ │ ├── build.js │ │ ├── lib │ │ ├── builder.js │ │ └── engine.js │ │ ├── main.js │ │ ├── main.test.js │ │ └── package.json ├── generate │ ├── .npmrc │ ├── .test │ │ └── fixtures │ │ │ ├── bookshop │ │ │ └── bookshop.config.js │ │ │ └── components │ │ │ └── card │ │ │ ├── card.bookshop.toml │ │ │ ├── card.jekyll.html │ │ │ └── card.scss │ ├── lib │ │ ├── browser-builder.js │ │ ├── browser-connector.js │ │ ├── live-builder.js │ │ ├── live-connector.js │ │ ├── structure-builder.js │ │ ├── structure-connector.js │ │ └── util.js │ ├── main.js │ ├── main.test.js │ └── package.json ├── generator-plugins │ ├── astro │ │ ├── astro-bookshop │ │ │ ├── BookshopBrowser.astro │ │ │ ├── helpers │ │ │ │ └── frontmatter-helper.js │ │ │ ├── main.js │ │ │ ├── main.test.js │ │ │ ├── mdx-process-frontmatter.js │ │ │ └── package.json │ │ └── vite-plugin-astro-bookshop │ │ │ ├── helpers │ │ │ └── ast-helper.js │ │ │ ├── main.js │ │ │ ├── main.test.js │ │ │ ├── package.json │ │ │ └── processors │ │ │ ├── astro-component.js │ │ │ ├── astro-pages.js │ │ │ ├── astro.js │ │ │ └── react-jsx.js │ ├── eleventy │ │ └── eleventy-bookshop │ │ │ ├── .npmrc │ │ │ ├── lib │ │ │ ├── eleventy-one-bookshop.js │ │ │ └── eleventy-zero-bookshop.js │ │ │ ├── main.js │ │ │ ├── main.test.js │ │ │ └── package.json │ └── sveltekit │ │ └── sveltekit-bookshop │ │ ├── Bookshop.svelte │ │ ├── BookshopBrowser.svelte │ │ ├── main.js │ │ ├── main.test.js │ │ ├── package.json │ │ └── proxy.js ├── helpers │ ├── .npmrc │ ├── README.md │ ├── lib │ │ ├── fs.js │ │ └── plugins │ │ │ └── liquid │ │ │ ├── highlight.js │ │ │ └── highlight.test.js │ ├── main.js │ └── package.json ├── init │ ├── .npmrc │ ├── README.md │ ├── lib │ │ └── templates │ │ │ ├── bookshop-config.ejs.t │ │ │ ├── bookshop-js.ejs.t │ │ │ ├── bookshop-json.ejs.t │ │ │ ├── bookshop-toml.ejs.t │ │ │ ├── bookshop-yml.ejs.t │ │ │ ├── eleventy.ejs.t │ │ │ ├── global-style.ejs.t │ │ │ ├── hugo-config.ejs.t │ │ │ ├── hugo.ejs.t │ │ │ ├── jekyll.ejs.t │ │ │ ├── page-eleventy.ejs.t │ │ │ ├── page-hugo.ejs.t │ │ │ ├── page-jekyll.ejs.t │ │ │ ├── page-svelte.ejs.t │ │ │ ├── scss.ejs.t │ │ │ ├── svelte.ejs.t │ │ │ └── templates.js │ ├── main.js │ └── package.json ├── live │ ├── .npmrc │ ├── .test │ │ ├── fixtures │ │ │ ├── bookshop │ │ │ │ └── bookshop.config.js │ │ │ └── components │ │ │ │ └── card │ │ │ │ ├── card.bookshop.toml │ │ │ │ ├── card.jekyll.html │ │ │ │ └── card.scss │ │ └── manual │ │ │ └── index.html │ ├── cli.js │ ├── lib │ │ ├── app │ │ │ ├── app.js │ │ │ ├── core.js │ │ │ ├── core.test.js │ │ │ ├── live-complex.test.js │ │ │ ├── live.js │ │ │ ├── live.test.js │ │ │ └── parsers │ │ │ │ ├── comment-parser.js │ │ │ │ ├── comment-parser.test.js │ │ │ │ ├── params-parser.js │ │ │ │ └── params-parser.test.js │ │ └── build │ │ │ └── util.js │ ├── main.js │ └── package.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── styles │ ├── .npmrc │ ├── .test │ │ ├── fixtures │ │ │ ├── bookshop │ │ │ │ ├── bookshop.config.js │ │ │ │ └── postcss.config.cjs │ │ │ ├── components │ │ │ │ ├── block │ │ │ │ │ └── block.scss │ │ │ │ └── card │ │ │ │ │ ├── card.bookshop.toml │ │ │ │ │ ├── card.jekyll.html │ │ │ │ │ └── card.scss │ │ │ └── shared │ │ │ │ └── styles │ │ │ │ └── core.scss │ │ └── second-fixtures │ │ │ └── components │ │ │ └── dos │ │ │ ├── dos.bookshop.toml │ │ │ ├── dos.jekyll.html │ │ │ └── dos.scss │ ├── bookshopStylePlugin.js │ ├── bookshopStylePlugin.test.js │ └── package.json ├── toolproof-tests │ ├── jekyll_deps │ │ └── Gemfile │ ├── package.json │ ├── test_files │ │ ├── _macros │ │ │ ├── live_editing_init_cc.toolproof.macro.yml │ │ │ ├── live_editing_load_astro.toolproof.macro.yml │ │ │ ├── live_editing_load_eleventy.toolproof.macro.yml │ │ │ ├── live_editing_load_hugo.toolproof.macro.yml │ │ │ ├── live_editing_load_jekyll.toolproof.macro.yml │ │ │ ├── live_editing_push_data.toolproof.macro.yml │ │ │ ├── setup_astro_site.toolproof.macro.yml │ │ │ ├── setup_eleventy_site.toolproof.macro.yml │ │ │ ├── setup_generate_package.toolproof.macro.yml │ │ │ ├── setup_hugo_site.toolproof.macro.yml │ │ │ ├── setup_init_package.toolproof.macro.yml │ │ │ ├── setup_jekyll_site.toolproof.macro.yml │ │ │ ├── setup_sass_package.toolproof.macro.yml │ │ │ └── setup_up_package.toolproof.macro.yml │ │ ├── astro │ │ │ ├── components │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── baselline.toolproof.yml │ │ │ │ ├── basic_component_rendering.toolproof.yml │ │ │ │ ├── bind_syntax.toolproof.yml │ │ │ │ ├── dynamic_component_names.toolproof.yml │ │ │ │ ├── flat_root_component_rendering.toolproof.yml │ │ │ │ ├── front_matter_usage.toolproof.yml │ │ │ │ ├── nested_component_rendering.toolproof.yml │ │ │ │ ├── nested_component_usage.toolproof.yml │ │ │ │ ├── nested_flat_component_rendering.toolproof.yml │ │ │ │ └── page_building_components.toolproof.yml │ │ │ └── live_editing │ │ │ │ ├── bindings │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_binding_through_assign.toolproof.yml │ │ │ │ ├── nested_data_binding.toolproof.yml │ │ │ │ ├── nested_loop_data_binding.toolproof.yml │ │ │ │ ├── parent_data_binding_over_child.toolproof.yml │ │ │ │ └── simple_data_binding.toolproof.yml │ │ │ │ ├── complex │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_component_without_props.toolproof.yml │ │ │ │ ├── renders_dynamic_loop.toolproof.yml │ │ │ │ ├── renders_multiline_component_tag.toolproof.yml │ │ │ │ ├── renders_subcomponent.toolproof.yml │ │ │ │ ├── renders_subinclude.toolproof.yml │ │ │ │ ├── renders_through_assign.toolproof.yml │ │ │ │ └── renders_top_level_loop.toolproof.yml │ │ │ │ ├── edge_cases │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── handles_css_global_imports.toolproof.yml │ │ │ │ ├── handles_css_module_imports.toolproof.yml │ │ │ │ ├── handles_ignoring_custom_paths.toolproof.yml │ │ │ │ └── handles_react_components_with_no_props.toolproof.yml │ │ │ │ ├── granules │ │ │ │ ├── adds_live_editing_markup.toolproof.yml │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── doesnt_live_render_unflagged_components.toolproof.yml │ │ │ │ ├── generate_hydrates_live_editing.toolproof.yml │ │ │ │ ├── live_renders_flat_components.toolproof.yml │ │ │ │ ├── live_renders_on_initialization.toolproof.yml │ │ │ │ ├── live_renders_with_new_data.toolproof.yml │ │ │ │ └── sets_flag_when_live_editing.toolproof.yml │ │ │ │ └── selective │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_renders_components_depth_first.toolproof.yml │ │ │ │ └── selectively_live_renders_loop.toolproof.yml │ │ ├── eleventy │ │ │ ├── basic_include.toolproof.yml │ │ │ ├── bookshop_live_schema.toolproof.yml │ │ │ ├── component_browser │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── component_browser_hydration.toolproof.yml │ │ │ │ ├── component_browser_initialization.toolproof.yml │ │ │ │ ├── component_browser_rendering.toolproof.yml │ │ │ │ ├── flat_background.toolproof.yml │ │ │ │ └── flat_component_browser_rendering.toolproof.yml │ │ │ ├── components │ │ │ │ ├── baseline.toolproof.yml │ │ │ │ ├── bind_syntax.toolproof.yml │ │ │ │ ├── component_precedence.toolproof.yml │ │ │ │ ├── dynamic_names.toolproof.yml │ │ │ │ ├── flat_root_components.toolproof.yml │ │ │ │ ├── front_matter.toolproof.yml │ │ │ │ ├── nested_components.toolproof.yml │ │ │ │ ├── nested_flat_components.toolproof.yml │ │ │ │ ├── nested_usage.toolproof.yml │ │ │ │ ├── page_building.toolproof.yml │ │ │ │ └── rendering.toolproof.yml │ │ │ └── live_editing │ │ │ │ ├── bindings │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_binding_through_assign.toolproof.yml │ │ │ │ ├── nested_data_binding.toolproof.yml │ │ │ │ ├── nested_loop_data_binding.toolproof.yml │ │ │ │ ├── parent_data_binding_over_child.toolproof.yml │ │ │ │ ├── respects_global_databindings_flag.toolproof.yml │ │ │ │ ├── respects_per_component_databinding_flag.toolproof.yml │ │ │ │ └── simple_data_binding.toolproof.yml │ │ │ │ ├── complex │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_component_without_props.toolproof.yml │ │ │ │ ├── renders_dynamic_loop.toolproof.yml │ │ │ │ ├── renders_multiline_component_tag.toolproof.yml │ │ │ │ ├── renders_nested_component_path.toolproof.yml │ │ │ │ ├── renders_range_loop.toolproof.yml │ │ │ │ ├── renders_subcomponent.toolproof.yml │ │ │ │ ├── renders_subinclude.toolproof.yml │ │ │ │ ├── renders_through_assign.toolproof.yml │ │ │ │ └── renders_top_level_loop.toolproof.yml │ │ │ │ ├── data │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_collections.toolproof.yml │ │ │ │ ├── renders_special_website_config.toolproof.yml │ │ │ │ ├── renders_warning_when_using_content.toolproof.yml │ │ │ │ └── renders_website_data.toolproof.yml │ │ │ │ ├── edge_cases │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_11ty_collection_loop.toolproof.yml │ │ │ │ ├── renders_filters_with_attributes.toolproof.yml │ │ │ │ └── renders_string_arguments.toolproof.yml │ │ │ │ ├── errors │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── replaces_nonexistent_components.toolproof.yml │ │ │ │ └── wraps_component_errors.toolproof.yml │ │ │ │ ├── filters │ │ │ │ ├── background.toolproof.yml │ │ │ │ └── renders_markdown.toolproof.yml │ │ │ │ ├── granules │ │ │ │ ├── adds_live_editing_markup.toolproof.yml │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── doesnt_live_render_flagged_components.toolproof.yml │ │ │ │ ├── generate_hydrates_live_editing.toolproof.yml │ │ │ │ ├── live_renders_flat_components.toolproof.yml │ │ │ │ ├── live_renders_when_cloudcannon_initialises.toolproof.yml │ │ │ │ ├── live_renders_when_cloudcannon_pushes_new_data.toolproof.yml │ │ │ │ └── sets_flag_when_live_editing.toolproof.yml │ │ │ │ ├── selective │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_renders_components_depth_first.toolproof.yml │ │ │ │ └── selectively_live_renders_loop.toolproof.yml │ │ │ │ └── starter │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_bindings.toolproof.yml │ │ │ │ └── live_renders_updates.toolproof.yml │ │ ├── generate │ │ │ ├── initialized_components │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── errors_mixing_single_components.toolproof.yml │ │ │ │ ├── errors_on_mixed_components_and_structures.toolproof.yml │ │ │ │ ├── errors_on_mixed_structures.toolproof.yml │ │ │ │ ├── errors_on_single_component_with_parameter.toolproof.yml │ │ │ │ ├── errors_on_structure_without_parameter.toolproof.yml │ │ │ │ ├── errors_referencing_nonexistent_component_in_structure.toolproof.yml │ │ │ │ ├── nested_components_can_be_initialized.toolproof.yml │ │ │ │ ├── single_component_arrays_can_be_initialized.toolproof.yml │ │ │ │ ├── single_components_can_be_initialized.toolproof.yml │ │ │ │ ├── structure_component_arrays_can_be_initialized.toolproof.yml │ │ │ │ └── structure_components_can_be_initialized.toolproof.yml │ │ │ ├── nested_components │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── deeply_nested_component_references_are_handled.toolproof.yml │ │ │ │ ├── errors_on_invalid_shorthand.toolproof.yml │ │ │ │ ├── errors_referencing_nonexistent_component_in_array.toolproof.yml │ │ │ │ ├── errors_referencing_nonexistent_component_in_object.toolproof.yml │ │ │ │ ├── single_component_creates_bespoke_object_structure.toolproof.yml │ │ │ │ ├── single_component_in_array_creates_bespoke_array_structure.toolproof.yml │ │ │ │ ├── structure_configures_linked_structure_object_input.toolproof.yml │ │ │ │ └── structure_in_array_configures_linked_structure_array_input.toolproof.yml │ │ │ ├── prefetch_generation │ │ │ │ ├── background.toolproof.yml │ │ │ │ └── info_json_includes_prefetch_files.toolproof.yml │ │ │ ├── script_generation │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── can_skip_data_binding.toolproof.yml │ │ │ │ ├── can_skip_live_editing.toolproof.yml │ │ │ │ └── connecting_live_editing.toolproof.yml │ │ │ ├── structure_generation │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── errors_on_invalid_syntax.toolproof.yml │ │ │ │ ├── errors_on_old_syntax.toolproof.yml │ │ │ │ ├── generating_structures_carries_through_extra_fields.toolproof.yml │ │ │ │ ├── generating_structures_for_complex_component_keys.toolproof.yml │ │ │ │ ├── generating_structures_for_flat_components.toolproof.yml │ │ │ │ ├── generating_structures_parity_test.toolproof.yml │ │ │ │ ├── js_function_config_is_supported.toolproof.yml │ │ │ │ ├── js_object_config_is_supported.toolproof.yml │ │ │ │ ├── json_config_is_supported.toolproof.yml │ │ │ │ ├── nested_object_arrays_become_nested_structures.toolproof.yml │ │ │ │ ├── object_array_structures_get_copy_of_configured_settings.toolproof.yml │ │ │ │ ├── object_arrays_become_structures.toolproof.yml │ │ │ │ └── object_arrays_do_not_become_structures_if_otherwise_configured.toolproof.yml │ │ │ └── thumbnail_convention │ │ │ │ ├── background.toolproof.yml │ │ │ │ └── generated_structures_connect_preview_and_icon.toolproof.yml │ │ ├── hugo │ │ │ ├── basic_include.toolproof.yml │ │ │ ├── bookshop_live_schema.toolproof.yml │ │ │ ├── component_browser │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── component_browser_hydration.toolproof.yml │ │ │ │ ├── component_browser_initialization.toolproof.yml │ │ │ │ ├── component_browser_markup.toolproof.yml │ │ │ │ ├── component_browser_rendering.toolproof.yml │ │ │ │ ├── flat_background.toolproof.yml │ │ │ │ └── flat_component_browser_rendering.toolproof.yml │ │ │ ├── components │ │ │ │ ├── baseline.toolproof.yml │ │ │ │ ├── bind_syntax.toolproof.yml │ │ │ │ ├── component_precedence.toolproof.yml │ │ │ │ ├── dynamic_names.toolproof.yml │ │ │ │ ├── flat_root_components.toolproof.yml │ │ │ │ ├── front_matter.toolproof.yml │ │ │ │ ├── nested_components.toolproof.yml │ │ │ │ ├── nested_flat_components.toolproof.yml │ │ │ │ ├── nested_usage.toolproof.yml │ │ │ │ ├── page_building.toolproof.yml │ │ │ │ ├── rendering.toolproof.yml │ │ │ │ └── without_props.toolproof.yml │ │ │ └── live_editing │ │ │ │ ├── bindings │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_binding_through_assign.toolproof.yml │ │ │ │ ├── global_data_bindings_flag.toolproof.yml │ │ │ │ ├── nested_data_binding.toolproof.yml │ │ │ │ ├── nested_loop_data_binding.toolproof.yml │ │ │ │ ├── parent_data_binding.toolproof.yml │ │ │ │ ├── per_component_data_binding_flag.toolproof.yml │ │ │ │ └── simple_data_binding.toolproof.yml │ │ │ │ ├── complex │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_renders_component_without_props.toolproof.yml │ │ │ │ ├── live_renders_dynamic_loop.toolproof.yml │ │ │ │ ├── live_renders_multiline_component_tag.toolproof.yml │ │ │ │ ├── live_renders_nested_component_path.toolproof.yml │ │ │ │ ├── live_renders_non_object_argument.toolproof.yml │ │ │ │ ├── live_renders_range_loop.toolproof.yml │ │ │ │ ├── live_renders_subcomponent.toolproof.yml │ │ │ │ ├── live_renders_subinclude.toolproof.yml │ │ │ │ ├── live_renders_through_assign.toolproof.yml │ │ │ │ └── live_renders_top_level_loop.toolproof.yml │ │ │ │ ├── data │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_renders_hugo_data_collection.toolproof.yml │ │ │ │ ├── live_renders_special_website_config.toolproof.yml │ │ │ │ └── live_renders_website_data.toolproof.yml │ │ │ │ ├── edge_cases │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_renders_complex_component.toolproof.yml │ │ │ │ ├── live_renders_map_iterator.toolproof.yml │ │ │ │ └── live_renders_unsafe_markdown.toolproof.yml │ │ │ │ ├── errors │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── component_error_boundary.toolproof.yml │ │ │ │ ├── non_existent_component.toolproof.yml │ │ │ │ └── non_existent_partial.toolproof.yml │ │ │ │ ├── extra_data │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_editing_custom_partial.toolproof.yml │ │ │ │ └── live_editing_custom_shortcode.toolproof.yml │ │ │ │ ├── filters │ │ │ │ ├── background.toolproof.yml │ │ │ │ └── live_renders_markdown.toolproof.yml │ │ │ │ ├── granules │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_editing_flag.toolproof.yml │ │ │ │ ├── live_editing_flagged_components.toolproof.yml │ │ │ │ ├── live_editing_flat_components.toolproof.yml │ │ │ │ ├── live_editing_hydration.toolproof.yml │ │ │ │ ├── live_editing_init.toolproof.yml │ │ │ │ ├── live_editing_markup.toolproof.yml │ │ │ │ └── live_editing_push.toolproof.yml │ │ │ │ ├── selective │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── depth_first_rendering.toolproof.yml │ │ │ │ └── selectively_live_renders_loop.toolproof.yml │ │ │ │ └── starter │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_bindings.toolproof.yml │ │ │ │ └── live_renders_updates.toolproof.yml │ │ ├── init │ │ │ ├── new_bookshops │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── creating_a_new_eleventy_bookshop.toolproof.yml │ │ │ │ ├── creating_a_new_hugo_bookshop.toolproof.yml │ │ │ │ └── creating_a_new_jekyll_bookshop.toolproof.yml │ │ │ └── new_components │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── creating_a_new_deep_nested_component.toolproof.yml │ │ │ │ ├── creating_a_new_eleventy_component_from_bookshop.toolproof.yml │ │ │ │ ├── creating_a_new_jekyll_component_from_bookshop.toolproof.yml │ │ │ │ └── creating_a_new_jekyll_component_from_root.toolproof.yml │ │ ├── jekyll │ │ │ ├── basic_include.toolproof.yml │ │ │ ├── bookshop_live_schema.toolproof.yml │ │ │ ├── component_browser │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── component_browser_hydration.toolproof.yml │ │ │ │ ├── component_browser_initialization.toolproof.yml │ │ │ │ ├── component_browser_rendering.toolproof.yml │ │ │ │ ├── flat_background.toolproof.yml │ │ │ │ └── flat_component_browser_rendering.toolproof.yml │ │ │ ├── components │ │ │ │ ├── baseline.toolproof.yml │ │ │ │ ├── bind_syntax.toolproof.yml │ │ │ │ ├── component_precedence.toolproof.yml │ │ │ │ ├── dynamic_names.toolproof.yml │ │ │ │ ├── flat_root_components.toolproof.yml │ │ │ │ ├── front_matter.toolproof.yml │ │ │ │ ├── nested_title.toolproof.yml │ │ │ │ ├── nested_usage.toolproof.yml │ │ │ │ └── title.toolproof.yml │ │ │ └── live_editing │ │ │ │ ├── bindings │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_binding_through_assign.toolproof.yml │ │ │ │ ├── global_data_bindings_flag.toolproof.yml │ │ │ │ ├── nested_data_binding.toolproof.yml │ │ │ │ ├── nested_loop_data_binding.toolproof.yml │ │ │ │ ├── parent_data_binding.toolproof.yml │ │ │ │ ├── per_component_data_binding_flag.toolproof.yml │ │ │ │ └── simple_data_binding.toolproof.yml │ │ │ │ ├── complex │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_component_without_props.toolproof.yml │ │ │ │ ├── renders_dynamic_loop.toolproof.yml │ │ │ │ ├── renders_multiline_component_tag.toolproof.yml │ │ │ │ ├── renders_nested_component_path.toolproof.yml │ │ │ │ ├── renders_range_loop.toolproof.yml │ │ │ │ ├── renders_subcomponent.toolproof.yml │ │ │ │ ├── renders_subinclude.toolproof.yml │ │ │ │ ├── renders_through_assign.toolproof.yml │ │ │ │ └── renders_top_level_loop.toolproof.yml │ │ │ │ ├── data │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_collections.toolproof.yml │ │ │ │ ├── renders_special_website_config.toolproof.yml │ │ │ │ ├── renders_warning_when_using_content.toolproof.yml │ │ │ │ └── renders_website_data.toolproof.yml │ │ │ │ ├── edge_cases │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── renders_blank_markdown.toolproof.yml │ │ │ │ ├── renders_collection_loop.toolproof.yml │ │ │ │ └── renders_filters_with_attributes.toolproof.yml │ │ │ │ ├── errors │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── replaces_nonexistent_components.toolproof.yml │ │ │ │ └── wraps_component_errors.toolproof.yml │ │ │ │ ├── filters │ │ │ │ ├── background.toolproof.yml │ │ │ │ └── renders_markdown.toolproof.yml │ │ │ │ ├── granules │ │ │ │ ├── adds_live_editing_markup.toolproof.yml │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── doesnt_live_render_flagged_components.toolproof.yml │ │ │ │ ├── generate_hydrates_live_editing.toolproof.yml │ │ │ │ ├── live_renders_flat_components.toolproof.yml │ │ │ │ ├── live_renders_when_cloudcannon_initialises.toolproof.yml │ │ │ │ ├── live_renders_when_cloudcannon_pushes_new_data.toolproof.yml │ │ │ │ └── sets_flag_when_live_editing.toolproof.yml │ │ │ │ ├── selective │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── live_renders_components_depth_first.toolproof.yml │ │ │ │ └── selectively_live_renders_loop.toolproof.yml │ │ │ │ └── starter │ │ │ │ ├── background.toolproof.yml │ │ │ │ ├── data_bindings.toolproof.yml │ │ │ │ └── live_renders_updates.toolproof.yml │ │ ├── standalone_sass │ │ │ └── compiling_simple_component_sass.toolproof.yml │ │ └── up │ │ │ ├── upgrading_config_files │ │ │ ├── background.toolproof.yml │ │ │ ├── converts_comments_to_input_configuration.toolproof.yml │ │ │ ├── converts_non_default_values.toolproof.yml │ │ │ ├── converts_to_js.toolproof.yml │ │ │ ├── converts_to_json.toolproof.yml │ │ │ ├── converts_to_toml.toolproof.yml │ │ │ ├── converts_to_yaml.toolproof.yml │ │ │ ├── creates_config_for_nested_objects.toolproof.yml │ │ │ ├── creates_inputs_config_for_instance_values.toolproof.yml │ │ │ ├── creates_inputs_config_for_multiselect_values.toolproof.yml │ │ │ ├── creates_inputs_config_for_select_values.toolproof.yml │ │ │ ├── gracefully_handles_unparsable_files.toolproof.yml │ │ │ ├── ignores_existing_3.0_syntax.toolproof.yml │ │ │ ├── migrates_component_to_spec.toolproof.yml │ │ │ └── migrates_extra_keys_between_formats.toolproof.yml │ │ │ └── upgrading_packages │ │ │ ├── background.toolproof.yml │ │ │ ├── upgrades_old_gems_and_installs.toolproof.yml │ │ │ ├── upgrades_old_gems_in_other_files_and_installs.toolproof.yml │ │ │ ├── upgrades_old_go_modules.toolproof.yml │ │ │ ├── upgrades_old_node_packages.toolproof.yml │ │ │ ├── upgrades_old_node_packages_and_installs.toolproof.yml │ │ │ └── upgrades_old_node_packages_and_installs_with_yarn.toolproof.yml │ └── toolproof.yml └── up │ ├── .npmrc │ ├── lib │ ├── misc │ │ └── upgrade_bookshop_module.js │ ├── upgrade_gem.js │ ├── upgrade_go.js │ ├── upgrade_node.js │ ├── upgrade_syntax.js │ ├── upgrade_syntax_blueprinter.js │ ├── upgrade_syntax_outputs.js │ └── util.js │ ├── main.js │ ├── main.test.js │ └── package.json └── scripts └── build-guides.sh /.backstage/changelog.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.backstage/changelog.cjs -------------------------------------------------------------------------------- /.backstage/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.backstage/publish.js -------------------------------------------------------------------------------- /.backstage/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.backstage/vendor.js -------------------------------------------------------------------------------- /.backstage/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.backstage/version.js -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.github/workflows/test-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/README.adoc -------------------------------------------------------------------------------- /bookshop-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/bookshop-hero.png -------------------------------------------------------------------------------- /bookshop-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/bookshop-packages.json -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/.rubocop.yml -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/Gemfile -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/README.md -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/Rakefile -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/jekyll-bookshop.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/jekyll-bookshop.gemspec -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/opener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/opener.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/bookshop-common-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/bookshop-common-tag.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/bookshop-include-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/bookshop-include-tag.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/bookshop-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/bookshop-tag.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/browser-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/browser-tag.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/component-browser-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/component-browser-tag.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/style-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/tags/style-tag.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/lib/jekyll-bookshop/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module JekyllBookshop 4 | VERSION = "3.17.1" 5 | end 6 | -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/browser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/browser_spec.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/data_spec.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- 1 | // empty -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/block/block.bookshop.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/block/block.bookshop.toml -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/block/block.jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/block/block.jekyll.html -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/block/block.scss: -------------------------------------------------------------------------------- 1 | .c-block { 2 | position: relative; 3 | } -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/item/item.bookshop.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/item/item.bookshop.toml -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/item/item.jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/item/item.jekyll.html -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/item/item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/components/item/item.scss -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/shared/jekyll/helper.jekyll.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/shared/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_bookshop/shared/styles/global.scss -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/_data/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/_data/labels.yml -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/_layouts/default.html -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/index.html -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/fixture_site/index.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | {% bookshop_scss %} -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/helpers/test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/helpers/test_helpers.rb -------------------------------------------------------------------------------- /generator-plugins/jekyll/jekyll-bookshop/spec/output_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/generator-plugins/jekyll/jekyll-bookshop/spec/output_spec.rb -------------------------------------------------------------------------------- /guides/browser.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/browser.adoc -------------------------------------------------------------------------------- /guides/conventions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/conventions.adoc -------------------------------------------------------------------------------- /guides/editor-links.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/editor-links.adoc -------------------------------------------------------------------------------- /guides/eleventy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/eleventy.adoc -------------------------------------------------------------------------------- /guides/hugo-extra-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/hugo-extra-files.md -------------------------------------------------------------------------------- /guides/hugo.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/hugo.adoc -------------------------------------------------------------------------------- /guides/jekyll.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/jekyll.adoc -------------------------------------------------------------------------------- /guides/live-editing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/live-editing.adoc -------------------------------------------------------------------------------- /guides/migration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/migration.adoc -------------------------------------------------------------------------------- /guides/sveltekit.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/sveltekit.adoc -------------------------------------------------------------------------------- /guides/visual-data-bindings.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/guides/visual-data-bindings.adoc -------------------------------------------------------------------------------- /hugo/v3/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/config.toml -------------------------------------------------------------------------------- /hugo/v3/core/bookshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/bookshop.html -------------------------------------------------------------------------------- /hugo/v3/core/bookshop_bindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/bookshop_bindings.html -------------------------------------------------------------------------------- /hugo/v3/core/bookshop_component_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/bookshop_component_browser.html -------------------------------------------------------------------------------- /hugo/v3/core/bookshop_partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/bookshop_partial.html -------------------------------------------------------------------------------- /hugo/v3/core/bookshop_scss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/bookshop_scss.html -------------------------------------------------------------------------------- /hugo/v3/core/errors/bad_bookshop_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/errors/bad_bookshop_tag.html -------------------------------------------------------------------------------- /hugo/v3/core/errors/err.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/errors/err.html -------------------------------------------------------------------------------- /hugo/v3/core/helpers/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/helpers/component.html -------------------------------------------------------------------------------- /hugo/v3/core/helpers/component_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/helpers/component_key.html -------------------------------------------------------------------------------- /hugo/v3/core/helpers/flat_component_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/helpers/flat_component_key.html -------------------------------------------------------------------------------- /hugo/v3/core/helpers/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/helpers/partial.html -------------------------------------------------------------------------------- /hugo/v3/core/helpers/partial_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/hugo/v3/core/helpers/partial_key.html -------------------------------------------------------------------------------- /hugo/v3/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cloudcannon/bookshop/hugo/v3 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /javascript-modules/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/.npmrc -------------------------------------------------------------------------------- /javascript-modules/bookshop-sass/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/bookshop-sass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/bookshop-sass/README.md -------------------------------------------------------------------------------- /javascript-modules/bookshop-sass/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/bookshop-sass/main.js -------------------------------------------------------------------------------- /javascript-modules/bookshop-sass/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/bookshop-sass/main.test.js -------------------------------------------------------------------------------- /javascript-modules/bookshop-sass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/bookshop-sass/package.json -------------------------------------------------------------------------------- /javascript-modules/browser/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/fixtures/bookshop/bookshop.config.js -------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/components/block/block.bookshop.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/fixtures/components/block/block.bookshop.toml -------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/components/block/block.jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/fixtures/components/block/block.jekyll.html -------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/components/block/block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/fixtures/components/block/block.scss -------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/components/card/card.bookshop.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/fixtures/components/card/card.bookshop.toml -------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/components/card/card.jekyll.html: -------------------------------------------------------------------------------- 1 |
{{ include.text }}
-------------------------------------------------------------------------------- /javascript-modules/browser/.test/fixtures/components/card/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/fixtures/components/card/card.scss -------------------------------------------------------------------------------- /javascript-modules/browser/.test/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/.test/manual/index.html -------------------------------------------------------------------------------- /javascript-modules/browser/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/cli.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/app.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/sockets.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/browser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/browser.svelte -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/code-editor/editor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/code-editor/editor.svelte -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/code-editor/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/code-editor/helpers.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/helpers-key.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/helpers-key.test.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/helpers.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/icons.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/info-pane.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/info-pane.svelte -------------------------------------------------------------------------------- /javascript-modules/browser/lib/app/svelte/lib/library.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/app/svelte/lib/library.svelte -------------------------------------------------------------------------------- /javascript-modules/browser/lib/build/browserServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/build/browserServer.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/build/materialIconPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/build/materialIconPlugin.js -------------------------------------------------------------------------------- /javascript-modules/browser/lib/build/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/lib/build/util.js -------------------------------------------------------------------------------- /javascript-modules/browser/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/main.js -------------------------------------------------------------------------------- /javascript-modules/browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/browser/package.json -------------------------------------------------------------------------------- /javascript-modules/builder/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/builder/.test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/.test/common.js -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/.test/fixtures/bookshop/bookshop.config.js -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/bookshop/test-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/.test/fixtures/bookshop/test-plugin.js -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/components/card/card.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | label = "Card Component TOML" 3 | -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/components/card/card.jekyll.html: -------------------------------------------------------------------------------- 1 |card
-------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/components/card/card.scss: -------------------------------------------------------------------------------- 1 | p { color: palegoldenrod; } -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/components/clash/clash.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/components/clash/clash.jekyll.html: -------------------------------------------------------------------------------- 1 |bookshop-a
-------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/components/clash/clash.scss: -------------------------------------------------------------------------------- 1 | p { color: coral; } -------------------------------------------------------------------------------- /javascript-modules/builder/.test/fixtures/shared/jekyll/title.jekyll.html: -------------------------------------------------------------------------------- 1 |bookshop-b
-------------------------------------------------------------------------------- /javascript-modules/builder/.test/second-fixtures/components/clash/clash.scss: -------------------------------------------------------------------------------- 1 | p { color: chocolate; } -------------------------------------------------------------------------------- /javascript-modules/builder/.test/second-fixtures/components/dos/dos.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | -------------------------------------------------------------------------------- /javascript-modules/builder/.test/second-fixtures/components/dos/dos.jekyll.html: -------------------------------------------------------------------------------- 1 |dos
-------------------------------------------------------------------------------- /javascript-modules/builder/.test/second-fixtures/components/dos/dos.scss: -------------------------------------------------------------------------------- 1 | p { color: darksalmon; } -------------------------------------------------------------------------------- /javascript-modules/builder/lib/bookshopHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/bookshopHelper.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopComponentPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopComponentPlugin.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopComponentPlugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopComponentPlugin.test.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopConfigPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopConfigPlugin.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopConfigPlugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopConfigPlugin.test.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopFilePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopFilePlugin.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopFilePlugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopFilePlugin.test.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopGlobPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopGlobPlugin.js -------------------------------------------------------------------------------- /javascript-modules/builder/lib/plugins/bookshopGlobPlugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/lib/plugins/bookshopGlobPlugin.test.js -------------------------------------------------------------------------------- /javascript-modules/builder/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/main.js -------------------------------------------------------------------------------- /javascript-modules/builder/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/main.test.js -------------------------------------------------------------------------------- /javascript-modules/builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/builder/package.json -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/build.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/build.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/build.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/builder.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/engine.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/actions.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/assets.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/client-router.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/client-router.astro -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/content.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/i18n.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/image.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/image.astro -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/middleware.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/picture.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/picture.astro -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/lib/modules/transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/lib/modules/transitions.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/main.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/main.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/astro-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/astro-engine/package.json -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/build.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/builder.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/engine.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/engine.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/engine.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/plugins/loop_context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/plugins/loop_context.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/plugins/markdownify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/plugins/markdownify.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/plugins/slug-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/plugins/slug-plugin.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/plugins/unbind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/plugins/unbind.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/plugins/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/plugins/url.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/translateLiquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/translateLiquid.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/lib/translateLiquid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/lib/translateLiquid.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/main.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/main.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/eleventy-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/eleventy-engine/package.json -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_bindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_bindings.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_component_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_component_browser.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_partial.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_scss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/bookshop_scss.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/errors/bad_bookshop_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/errors/bad_bookshop_tag.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/errors/err.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/errors/err.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/component.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/component_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/component_key.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/flat_component_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/flat_component_key.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/partial.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/partial_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/bookshop-hugo-templates/helpers/partial_key.html -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/build.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/full-hugo-renderer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/full-hugo-renderer/build.sh -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/full-hugo-renderer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/full-hugo-renderer/go.mod -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/full-hugo-renderer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/full-hugo-renderer/go.sum -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/full-hugo-renderer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/full-hugo-renderer/main.go -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/full-hugo-renderer/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/full-hugo-renderer/wasm_exec.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/builder.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/engine.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/engine.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/engine.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/hugoIdentifierParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/hugoIdentifierParser.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/hugoIdentifierParser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/hugoIdentifierParser.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/translateTextTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/translateTextTemplate.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/lib/translateTextTemplate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/lib/translateTextTemplate.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/main.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/main.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/package.json -------------------------------------------------------------------------------- /javascript-modules/engines/hugo-engine/prep__test__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/hugo-engine/prep__test__.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/build.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/builder.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/engine.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/engine.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/engine.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/emulate-jekyll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/emulate-jekyll.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/jsonify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/jsonify.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/local.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/loop_context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/loop_context.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/markdownify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/markdownify.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/relative_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/relative_url.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/slugify-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/slugify-plugin.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/plugins/unbind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/plugins/unbind.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/translateLiquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/translateLiquid.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/lib/translateLiquid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/lib/translateLiquid.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/main.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/main.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/jekyll-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/jekyll-engine/package.json -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/.test/fixtures/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/.test/fixtures/bookshop/bookshop.config.js -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/.test/fixtures/components/card/card.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/.test/fixtures/components/card/card.scss: -------------------------------------------------------------------------------- 1 | p { color: palegoldenrod; } -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/.test/fixtures/components/card/card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/.test/fixtures/components/card/card.svelte -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/build.js -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/lib/builder.js -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/lib/engine.js -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/main.js -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/main.test.js -------------------------------------------------------------------------------- /javascript-modules/engines/svelte-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/engines/svelte-engine/package.json -------------------------------------------------------------------------------- /javascript-modules/generate/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/generate/.test/fixtures/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/.test/fixtures/bookshop/bookshop.config.js -------------------------------------------------------------------------------- /javascript-modules/generate/.test/fixtures/components/card/card.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | structures = ["test"] 3 | -------------------------------------------------------------------------------- /javascript-modules/generate/.test/fixtures/components/card/card.jekyll.html: -------------------------------------------------------------------------------- 1 |card - {{ include.text }}
-------------------------------------------------------------------------------- /javascript-modules/generate/.test/fixtures/components/card/card.scss: -------------------------------------------------------------------------------- 1 | p { color: palegoldenrod; } -------------------------------------------------------------------------------- /javascript-modules/generate/lib/browser-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/browser-builder.js -------------------------------------------------------------------------------- /javascript-modules/generate/lib/browser-connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/browser-connector.js -------------------------------------------------------------------------------- /javascript-modules/generate/lib/live-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/live-builder.js -------------------------------------------------------------------------------- /javascript-modules/generate/lib/live-connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/live-connector.js -------------------------------------------------------------------------------- /javascript-modules/generate/lib/structure-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/structure-builder.js -------------------------------------------------------------------------------- /javascript-modules/generate/lib/structure-connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/structure-connector.js -------------------------------------------------------------------------------- /javascript-modules/generate/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/lib/util.js -------------------------------------------------------------------------------- /javascript-modules/generate/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/main.js -------------------------------------------------------------------------------- /javascript-modules/generate/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/main.test.js -------------------------------------------------------------------------------- /javascript-modules/generate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generate/package.json -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/astro-bookshop/BookshopBrowser.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/astro-bookshop/BookshopBrowser.astro -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/astro-bookshop/helpers/frontmatter-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/astro-bookshop/helpers/frontmatter-helper.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/astro-bookshop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/astro-bookshop/main.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/astro-bookshop/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/astro-bookshop/main.test.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/astro-bookshop/mdx-process-frontmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/astro-bookshop/mdx-process-frontmatter.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/astro-bookshop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/astro-bookshop/package.json -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/helpers/ast-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/helpers/ast-helper.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/main.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/main.test.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/package.json -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/astro-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/astro-component.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/astro-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/astro-pages.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/astro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/astro.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/react-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/astro/vite-plugin-astro-bookshop/processors/react-jsx.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/eleventy/eleventy-bookshop/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/eleventy/eleventy-bookshop/lib/eleventy-one-bookshop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/eleventy/eleventy-bookshop/lib/eleventy-one-bookshop.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/eleventy/eleventy-bookshop/lib/eleventy-zero-bookshop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/eleventy/eleventy-bookshop/lib/eleventy-zero-bookshop.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/eleventy/eleventy-bookshop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/eleventy/eleventy-bookshop/main.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/eleventy/eleventy-bookshop/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/eleventy/eleventy-bookshop/main.test.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/eleventy/eleventy-bookshop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/eleventy/eleventy-bookshop/package.json -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/Bookshop.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/Bookshop.svelte -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/BookshopBrowser.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/BookshopBrowser.svelte -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/main.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/main.test.js -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/package.json -------------------------------------------------------------------------------- /javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/generator-plugins/sveltekit/sveltekit-bookshop/proxy.js -------------------------------------------------------------------------------- /javascript-modules/helpers/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/helpers/README.md: -------------------------------------------------------------------------------- 1 | # Bookshop helpers 2 | -------------------------------------------------------------------------------- /javascript-modules/helpers/lib/fs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript-modules/helpers/lib/plugins/liquid/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/helpers/lib/plugins/liquid/highlight.js -------------------------------------------------------------------------------- /javascript-modules/helpers/lib/plugins/liquid/highlight.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/helpers/lib/plugins/liquid/highlight.test.js -------------------------------------------------------------------------------- /javascript-modules/helpers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/helpers/main.js -------------------------------------------------------------------------------- /javascript-modules/helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/helpers/package.json -------------------------------------------------------------------------------- /javascript-modules/init/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/README.md -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/bookshop-config.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/bookshop-config.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/bookshop-js.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/bookshop-js.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/bookshop-json.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/bookshop-json.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/bookshop-toml.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/bookshop-toml.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/bookshop-yml.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/bookshop-yml.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/eleventy.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/eleventy.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/global-style.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/global-style.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/hugo-config.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/hugo-config.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/hugo.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/hugo.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/jekyll.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/jekyll.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/page-eleventy.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/page-eleventy.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/page-hugo.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/page-hugo.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/page-jekyll.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/page-jekyll.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/page-svelte.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/page-svelte.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/scss.ejs.t: -------------------------------------------------------------------------------- 1 | .c-<%= componentName %> { 2 | 3 | } -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/svelte.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/svelte.ejs.t -------------------------------------------------------------------------------- /javascript-modules/init/lib/templates/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/lib/templates/templates.js -------------------------------------------------------------------------------- /javascript-modules/init/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/main.js -------------------------------------------------------------------------------- /javascript-modules/init/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/init/package.json -------------------------------------------------------------------------------- /javascript-modules/live/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/live/.test/fixtures/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/.test/fixtures/bookshop/bookshop.config.js -------------------------------------------------------------------------------- /javascript-modules/live/.test/fixtures/components/card/card.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | -------------------------------------------------------------------------------- /javascript-modules/live/.test/fixtures/components/card/card.jekyll.html: -------------------------------------------------------------------------------- 1 |card - {{ include.text }}
-------------------------------------------------------------------------------- /javascript-modules/live/.test/fixtures/components/card/card.scss: -------------------------------------------------------------------------------- 1 | p { color: palegoldenrod; } -------------------------------------------------------------------------------- /javascript-modules/live/.test/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/.test/manual/index.html -------------------------------------------------------------------------------- /javascript-modules/live/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/cli.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/app.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/core.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/core.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/core.test.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/live-complex.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/live-complex.test.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/live.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/live.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/live.test.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/parsers/comment-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/parsers/comment-parser.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/parsers/comment-parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/parsers/comment-parser.test.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/parsers/params-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/parsers/params-parser.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/app/parsers/params-parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/app/parsers/params-parser.test.js -------------------------------------------------------------------------------- /javascript-modules/live/lib/build/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/lib/build/util.js -------------------------------------------------------------------------------- /javascript-modules/live/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/main.js -------------------------------------------------------------------------------- /javascript-modules/live/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/live/package.json -------------------------------------------------------------------------------- /javascript-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/package.json -------------------------------------------------------------------------------- /javascript-modules/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/pnpm-lock.yaml -------------------------------------------------------------------------------- /javascript-modules/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/pnpm-workspace.yaml -------------------------------------------------------------------------------- /javascript-modules/styles/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/bookshop/bookshop.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/.test/fixtures/bookshop/bookshop.config.js -------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/bookshop/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/.test/fixtures/bookshop/postcss.config.cjs -------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/components/block/block.scss: -------------------------------------------------------------------------------- 1 | div { color: palevioletred; } -------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/components/card/card.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | -------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/components/card/card.jekyll.html: -------------------------------------------------------------------------------- 1 |card
-------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/components/card/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/.test/fixtures/components/card/card.scss -------------------------------------------------------------------------------- /javascript-modules/styles/.test/fixtures/shared/styles/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/.test/fixtures/shared/styles/core.scss -------------------------------------------------------------------------------- /javascript-modules/styles/.test/second-fixtures/components/dos/dos.bookshop.toml: -------------------------------------------------------------------------------- 1 | [spec] 2 | -------------------------------------------------------------------------------- /javascript-modules/styles/.test/second-fixtures/components/dos/dos.jekyll.html: -------------------------------------------------------------------------------- 1 |dos
-------------------------------------------------------------------------------- /javascript-modules/styles/.test/second-fixtures/components/dos/dos.scss: -------------------------------------------------------------------------------- 1 | p { color: darksalmon; } -------------------------------------------------------------------------------- /javascript-modules/styles/bookshopStylePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/bookshopStylePlugin.js -------------------------------------------------------------------------------- /javascript-modules/styles/bookshopStylePlugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/bookshopStylePlugin.test.js -------------------------------------------------------------------------------- /javascript-modules/styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/styles/package.json -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/jekyll_deps/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/jekyll_deps/Gemfile -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/package.json -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/live_editing_init_cc.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/live_editing_init_cc.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_astro.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_astro.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_eleventy.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_eleventy.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_hugo.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_hugo.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_jekyll.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/live_editing_load_jekyll.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/live_editing_push_data.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/live_editing_push_data.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_astro_site.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_astro_site.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_eleventy_site.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_eleventy_site.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_generate_package.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_generate_package.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_hugo_site.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_hugo_site.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_init_package.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_init_package.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_jekyll_site.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_jekyll_site.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_sass_package.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_sass_package.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/_macros/setup_up_package.toolproof.macro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/_macros/setup_up_package.toolproof.macro.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/baselline.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/baselline.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/basic_component_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/basic_component_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/bind_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/bind_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/dynamic_component_names.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/dynamic_component_names.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/flat_root_component_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/flat_root_component_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/front_matter_usage.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/front_matter_usage.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/nested_component_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/nested_component_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/nested_component_usage.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/nested_component_usage.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/nested_flat_component_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/nested_flat_component_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/components/page_building_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/components/page_building_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/data_binding_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/data_binding_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/nested_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/nested_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/nested_loop_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/nested_loop_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/parent_data_binding_over_child.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/parent_data_binding_over_child.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/simple_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/bindings/simple_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_component_without_props.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_component_without_props.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_dynamic_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_dynamic_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_multiline_component_tag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_multiline_component_tag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_subcomponent.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_subcomponent.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_subinclude.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_subinclude.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_top_level_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/complex/renders_top_level_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_css_global_imports.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_css_global_imports.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_css_module_imports.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_css_module_imports.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_ignoring_custom_paths.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_ignoring_custom_paths.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_react_components_with_no_props.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/edge_cases/handles_react_components_with_no_props.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/adds_live_editing_markup.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/adds_live_editing_markup.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/doesnt_live_render_unflagged_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/doesnt_live_render_unflagged_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/generate_hydrates_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/generate_hydrates_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/live_renders_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/live_renders_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/live_renders_on_initialization.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/live_renders_on_initialization.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/live_renders_with_new_data.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/live_renders_with_new_data.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/sets_flag_when_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/granules/sets_flag_when_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/selective/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/selective/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/selective/live_renders_components_depth_first.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/selective/live_renders_components_depth_first.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/astro/live_editing/selective/selectively_live_renders_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/astro/live_editing/selective/selectively_live_renders_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/basic_include.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/basic_include.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/bookshop_live_schema.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/bookshop_live_schema.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/component_browser/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/component_browser/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/component_browser/component_browser_hydration.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/component_browser/component_browser_hydration.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/component_browser/component_browser_initialization.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/component_browser/component_browser_initialization.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/component_browser/component_browser_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/component_browser/component_browser_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/component_browser/flat_background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/component_browser/flat_background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/component_browser/flat_component_browser_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/component_browser/flat_component_browser_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/baseline.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/baseline.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/bind_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/bind_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/component_precedence.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/component_precedence.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/dynamic_names.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/dynamic_names.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/flat_root_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/flat_root_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/front_matter.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/front_matter.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/nested_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/nested_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/nested_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/nested_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/nested_usage.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/nested_usage.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/page_building.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/page_building.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/components/rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/components/rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/data_binding_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/data_binding_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/nested_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/nested_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/nested_loop_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/nested_loop_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/parent_data_binding_over_child.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/parent_data_binding_over_child.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/respects_global_databindings_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/respects_global_databindings_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/respects_per_component_databinding_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/respects_per_component_databinding_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/simple_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/bindings/simple_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_component_without_props.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_component_without_props.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_dynamic_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_dynamic_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_multiline_component_tag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_multiline_component_tag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_nested_component_path.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_nested_component_path.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_range_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_range_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_subcomponent.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_subcomponent.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_subinclude.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_subinclude.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_top_level_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/complex/renders_top_level_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_collections.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_collections.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_special_website_config.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_special_website_config.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_warning_when_using_content.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_warning_when_using_content.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_website_data.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/data/renders_website_data.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/renders_11ty_collection_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/renders_11ty_collection_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/renders_filters_with_attributes.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/renders_filters_with_attributes.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/renders_string_arguments.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/edge_cases/renders_string_arguments.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/errors/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/errors/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/errors/replaces_nonexistent_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/errors/replaces_nonexistent_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/errors/wraps_component_errors.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/errors/wraps_component_errors.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/filters/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/filters/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/filters/renders_markdown.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/filters/renders_markdown.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/adds_live_editing_markup.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/adds_live_editing_markup.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/doesnt_live_render_flagged_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/doesnt_live_render_flagged_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/generate_hydrates_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/generate_hydrates_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/live_renders_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/live_renders_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/sets_flag_when_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/granules/sets_flag_when_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/selective/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/selective/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/selective/live_renders_components_depth_first.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/selective/live_renders_components_depth_first.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/selective/selectively_live_renders_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/selective/selectively_live_renders_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/starter/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/starter/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/starter/data_bindings.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/starter/data_bindings.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/eleventy/live_editing/starter/live_renders_updates.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/eleventy/live_editing/starter/live_renders_updates.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/errors_mixing_single_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/errors_mixing_single_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/errors_on_mixed_structures.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/errors_on_mixed_structures.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/errors_on_structure_without_parameter.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/errors_on_structure_without_parameter.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/nested_components_can_be_initialized.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/nested_components_can_be_initialized.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/single_components_can_be_initialized.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/single_components_can_be_initialized.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/initialized_components/structure_components_can_be_initialized.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/initialized_components/structure_components_can_be_initialized.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/nested_components/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/nested_components/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/nested_components/errors_on_invalid_shorthand.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/nested_components/errors_on_invalid_shorthand.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/prefetch_generation/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/prefetch_generation/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/prefetch_generation/info_json_includes_prefetch_files.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/prefetch_generation/info_json_includes_prefetch_files.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/script_generation/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/script_generation/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/script_generation/can_skip_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/script_generation/can_skip_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/script_generation/can_skip_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/script_generation/can_skip_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/script_generation/connecting_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/script_generation/connecting_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/errors_on_invalid_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/errors_on_invalid_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/errors_on_old_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/errors_on_old_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/generating_structures_for_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/generating_structures_for_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/generating_structures_parity_test.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/generating_structures_parity_test.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/js_function_config_is_supported.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/js_function_config_is_supported.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/js_object_config_is_supported.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/js_object_config_is_supported.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/json_config_is_supported.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/json_config_is_supported.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/structure_generation/object_arrays_become_structures.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/structure_generation/object_arrays_become_structures.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/generate/thumbnail_convention/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/generate/thumbnail_convention/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/basic_include.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/basic_include.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/bookshop_live_schema.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/bookshop_live_schema.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_hydration.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_hydration.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_initialization.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_initialization.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_markup.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_markup.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/component_browser_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/flat_background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/flat_background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/component_browser/flat_component_browser_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/component_browser/flat_component_browser_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/baseline.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/baseline.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/bind_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/bind_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/component_precedence.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/component_precedence.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/dynamic_names.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/dynamic_names.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/flat_root_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/flat_root_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/front_matter.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/front_matter.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/nested_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/nested_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/nested_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/nested_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/nested_usage.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/nested_usage.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/page_building.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/page_building.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/components/without_props.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/components/without_props.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/data_binding_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/data_binding_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/global_data_bindings_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/global_data_bindings_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/nested_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/nested_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/nested_loop_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/nested_loop_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/parent_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/parent_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/per_component_data_binding_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/per_component_data_binding_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/simple_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/bindings/simple_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_component_without_props.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_component_without_props.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_dynamic_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_dynamic_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_multiline_component_tag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_multiline_component_tag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_nested_component_path.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_nested_component_path.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_non_object_argument.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_non_object_argument.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_range_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_range_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_subcomponent.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_subcomponent.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_subinclude.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_subinclude.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_top_level_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/complex/live_renders_top_level_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/live_renders_hugo_data_collection.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/live_renders_hugo_data_collection.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/live_renders_special_website_config.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/live_renders_special_website_config.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/live_renders_website_data.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/data/live_renders_website_data.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/live_renders_complex_component.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/live_renders_complex_component.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/live_renders_map_iterator.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/live_renders_map_iterator.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/live_renders_unsafe_markdown.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/edge_cases/live_renders_unsafe_markdown.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/component_error_boundary.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/component_error_boundary.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/non_existent_component.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/non_existent_component.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/non_existent_partial.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/errors/non_existent_partial.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/extra_data/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/extra_data/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/extra_data/live_editing_custom_partial.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/extra_data/live_editing_custom_partial.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/extra_data/live_editing_custom_shortcode.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/extra_data/live_editing_custom_shortcode.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/filters/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/filters/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/filters/live_renders_markdown.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/filters/live_renders_markdown.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_flagged_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_flagged_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_hydration.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_hydration.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_init.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_init.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_markup.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_markup.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_push.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/granules/live_editing_push.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/selective/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/selective/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/selective/depth_first_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/selective/depth_first_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/selective/selectively_live_renders_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/selective/selectively_live_renders_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/starter/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/starter/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/starter/data_bindings.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/starter/data_bindings.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/hugo/live_editing/starter/live_renders_updates.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/hugo/live_editing/starter/live_renders_updates.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_bookshops/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_bookshops/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_bookshops/creating_a_new_eleventy_bookshop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_bookshops/creating_a_new_eleventy_bookshop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_bookshops/creating_a_new_hugo_bookshop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_bookshops/creating_a_new_hugo_bookshop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_bookshops/creating_a_new_jekyll_bookshop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_bookshops/creating_a_new_jekyll_bookshop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_components/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_components/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_deep_nested_component.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_deep_nested_component.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_eleventy_component_from_bookshop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_eleventy_component_from_bookshop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_jekyll_component_from_bookshop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_jekyll_component_from_bookshop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_jekyll_component_from_root.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/init/new_components/creating_a_new_jekyll_component_from_root.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/basic_include.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/basic_include.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/bookshop_live_schema.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/bookshop_live_schema.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/component_browser/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/component_browser/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/component_browser/component_browser_hydration.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/component_browser/component_browser_hydration.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/component_browser/component_browser_initialization.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/component_browser/component_browser_initialization.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/component_browser/component_browser_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/component_browser/component_browser_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/component_browser/flat_background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/component_browser/flat_background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/component_browser/flat_component_browser_rendering.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/component_browser/flat_component_browser_rendering.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/baseline.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/baseline.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/bind_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/bind_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/component_precedence.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/component_precedence.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/dynamic_names.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/dynamic_names.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/flat_root_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/flat_root_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/front_matter.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/front_matter.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/nested_title.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/nested_title.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/nested_usage.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/nested_usage.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/components/title.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/components/title.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/data_binding_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/data_binding_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/global_data_bindings_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/global_data_bindings_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/nested_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/nested_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/nested_loop_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/nested_loop_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/parent_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/parent_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/per_component_data_binding_flag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/per_component_data_binding_flag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/simple_data_binding.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/bindings/simple_data_binding.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_component_without_props.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_component_without_props.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_dynamic_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_dynamic_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_multiline_component_tag.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_multiline_component_tag.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_nested_component_path.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_nested_component_path.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_range_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_range_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_subcomponent.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_subcomponent.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_subinclude.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_subinclude.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_through_assign.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_through_assign.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_top_level_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/complex/renders_top_level_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_collections.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_collections.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_special_website_config.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_special_website_config.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_warning_when_using_content.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_warning_when_using_content.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_website_data.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/data/renders_website_data.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/renders_blank_markdown.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/renders_blank_markdown.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/renders_collection_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/renders_collection_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/renders_filters_with_attributes.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/edge_cases/renders_filters_with_attributes.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/errors/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/errors/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/errors/replaces_nonexistent_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/errors/replaces_nonexistent_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/errors/wraps_component_errors.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/errors/wraps_component_errors.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/filters/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/filters/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/filters/renders_markdown.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/filters/renders_markdown.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/adds_live_editing_markup.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/adds_live_editing_markup.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/doesnt_live_render_flagged_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/doesnt_live_render_flagged_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/generate_hydrates_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/generate_hydrates_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/live_renders_flat_components.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/live_renders_flat_components.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/live_renders_when_cloudcannon_initialises.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/live_renders_when_cloudcannon_initialises.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/sets_flag_when_live_editing.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/granules/sets_flag_when_live_editing.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/selective/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/selective/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/selective/live_renders_components_depth_first.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/selective/live_renders_components_depth_first.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/selective/selectively_live_renders_loop.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/selective/selectively_live_renders_loop.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/starter/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/starter/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/starter/data_bindings.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/starter/data_bindings.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/jekyll/live_editing/starter/live_renders_updates.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/jekyll/live_editing/starter/live_renders_updates.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/standalone_sass/compiling_simple_component_sass.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/standalone_sass/compiling_simple_component_sass.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_comments_to_input_configuration.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_comments_to_input_configuration.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_non_default_values.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_non_default_values.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_js.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_js.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_json.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_json.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_toml.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_toml.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_yaml.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/converts_to_yaml.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_config_for_nested_objects.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_config_for_nested_objects.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_inputs_config_for_instance_values.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_inputs_config_for_instance_values.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_inputs_config_for_multiselect_values.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_inputs_config_for_multiselect_values.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_inputs_config_for_select_values.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/creates_inputs_config_for_select_values.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/gracefully_handles_unparsable_files.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/gracefully_handles_unparsable_files.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/ignores_existing_3.0_syntax.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/ignores_existing_3.0_syntax.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/migrates_component_to_spec.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/migrates_component_to_spec.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/migrates_extra_keys_between_formats.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_config_files/migrates_extra_keys_between_formats.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_packages/background.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_packages/background.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_gems_and_installs.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_gems_and_installs.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_gems_in_other_files_and_installs.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_gems_in_other_files_and_installs.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_go_modules.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_go_modules.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_node_packages.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_node_packages.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_node_packages_and_installs.toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/test_files/up/upgrading_packages/upgrades_old_node_packages_and_installs.toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/toolproof-tests/toolproof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/toolproof-tests/toolproof.yml -------------------------------------------------------------------------------- /javascript-modules/up/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /javascript-modules/up/lib/misc/upgrade_bookshop_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/misc/upgrade_bookshop_module.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/upgrade_gem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/upgrade_gem.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/upgrade_go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/upgrade_go.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/upgrade_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/upgrade_node.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/upgrade_syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/upgrade_syntax.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/upgrade_syntax_blueprinter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/upgrade_syntax_blueprinter.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/upgrade_syntax_outputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/upgrade_syntax_outputs.js -------------------------------------------------------------------------------- /javascript-modules/up/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/lib/util.js -------------------------------------------------------------------------------- /javascript-modules/up/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/main.js -------------------------------------------------------------------------------- /javascript-modules/up/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/main.test.js -------------------------------------------------------------------------------- /javascript-modules/up/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/javascript-modules/up/package.json -------------------------------------------------------------------------------- /scripts/build-guides.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudCannon/bookshop/HEAD/scripts/build-guides.sh --------------------------------------------------------------------------------