├── .eslintrc.js ├── .github ├── actions │ └── test-vendor-package │ │ └── action.yml ├── dependabot.yml └── workflows │ └── lint-and-test.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── BREAKING_CHANGES_1.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── bin ├── build-vendor.mjs ├── generateExampleData.js └── spectaql.js ├── config-example.yml ├── dev ├── README.md ├── build-e2e.mjs ├── echoDirectiveSdl.mjs ├── ensure-npm.mjs └── utils.mjs ├── examples ├── config.yml ├── customizations │ └── examples │ │ └── index.js ├── data │ ├── intro-items-markdown.md │ ├── introspection-with-metadata.json │ ├── introspection-without-metadata.json │ ├── metadata.json │ ├── schema-part2.gql │ └── schema.gql ├── output │ ├── images │ │ ├── favicon.png │ │ └── logo.png │ ├── index.html │ ├── javascripts │ │ └── spectaql.min.js │ └── stylesheets │ │ └── spectaql.min.css └── themes │ ├── README.md │ ├── deep-nesting-data │ ├── README.md │ └── data.mjs │ └── my-partial-theme │ ├── data │ └── index.js │ ├── helpers │ └── dumb.js │ ├── javascripts │ └── hello.js │ ├── stylesheets │ └── custom.css │ └── views │ └── partials │ └── graphql │ └── query.hbs ├── index.js ├── lint-staged.config.js ├── nodemon.json ├── package.json ├── src ├── cli.js ├── index.js ├── lib │ ├── common.js │ ├── gruntConfig.js │ ├── interpolation.js │ └── loadYaml.js ├── spectaql │ ├── augmenters.js │ ├── build-schemas.js │ ├── directive.js │ ├── generate-graphql-example-data.js │ ├── graphql-hl.js │ ├── graphql-loaders.js │ ├── index.js │ ├── metadata-loaders.js │ ├── pre-process.js │ ├── type-helpers.js │ └── utils.js └── themes │ ├── basic │ └── stylesheets │ │ └── main.scss │ ├── default │ ├── data │ │ └── index.js │ ├── helpers │ │ ├── and.js │ │ ├── ariaLevel.js │ │ ├── codify.js │ │ ├── concat.js │ │ ├── empty.js │ │ ├── equal.js │ │ ├── firstTruthy.js │ │ ├── generateApiEndpoints.js │ │ ├── graphql-scalars.js │ │ ├── htmlId.js │ │ ├── indefiniteArticle.js │ │ ├── interpolateReferences.js │ │ ├── itemHeadingTag.js │ │ ├── kebabCase.js │ │ ├── loadTextFromFile.js │ │ ├── math.js │ │ ├── md.js │ │ ├── mdLink.js │ │ ├── mdTypeLink.js │ │ ├── nempty.js │ │ ├── not.js │ │ ├── notEqual.js │ │ ├── or.js │ │ ├── printGraphQL.js │ │ ├── printJSON.js │ │ ├── schemaReferenceHref.js │ │ ├── spanWrap.js │ │ ├── stripTrailing.js │ │ └── ternary.js │ ├── javascripts │ │ ├── main.js │ │ ├── scroll-spy.js │ │ ├── toggle-menu.js │ │ └── util.js │ ├── stylesheets │ │ ├── _monokai.scss │ │ ├── base.scss │ │ ├── custom.scss │ │ ├── main.scss │ │ └── syntax-highlighting.scss │ └── views │ │ ├── embedded.hbs │ │ ├── main.hbs │ │ └── partials │ │ ├── graphql │ │ ├── _description-with-defaults.hbs │ │ ├── _query-or-mutation-arguments.hbs │ │ ├── _query-or-mutation-or-subscription.hbs │ │ ├── field-arguments.hbs │ │ ├── kinds │ │ │ ├── _fields.hbs │ │ │ ├── enum.hbs │ │ │ ├── input-object.hbs │ │ │ ├── interface.hbs │ │ │ ├── object.hbs │ │ │ ├── scalar.hbs │ │ │ └── union.hbs │ │ ├── mutation.hbs │ │ ├── name-and-type.hbs │ │ ├── query.hbs │ │ ├── subscription.hbs │ │ └── type.hbs │ │ └── layout │ │ ├── content │ │ ├── introduction │ │ │ ├── item.hbs │ │ │ ├── main.hbs │ │ │ └── welcome.hbs │ │ ├── item.hbs │ │ └── main.hbs │ │ ├── head.hbs │ │ ├── links-scripts.hbs │ │ ├── nav │ │ ├── item.hbs │ │ ├── main.hbs │ │ ├── mobile-navbar.hbs │ │ └── section-item.hbs │ │ └── page.hbs │ └── spectaql │ └── stylesheets │ └── main.scss ├── static ├── SpectaQL.png ├── anvil-api-screenshot.jpg └── anvil.png ├── test ├── .eslintrc.js ├── README.md ├── e2e │ ├── .gitignore │ ├── README.md │ ├── alive.mjs │ ├── config.yml │ ├── custom-theme │ │ ├── data │ │ │ └── index.mjs │ │ ├── helpers │ │ │ └── dumb.js │ │ ├── javascripts │ │ │ └── hello.js │ │ ├── stylesheets │ │ │ └── custom.css │ │ └── views │ │ │ └── partials │ │ │ └── graphql │ │ │ └── query.hbs │ └── package.json ├── fixtures │ ├── bad-schema.gql │ ├── examplesProcessor.js │ ├── favicon.png │ ├── logo.png │ ├── non-standard-query-mutation-schema.gql │ ├── schema-with-spectaql-directives.gql │ ├── simple-schema-supplement.txt │ └── simple-schema.gql ├── helpers.js ├── mocha-config.js ├── mocha-environment.js ├── mocha-setup.js └── src │ ├── helpers │ ├── generateApiEndpoints.test.js │ └── interpolateReferences.test.js │ ├── index.test.js │ ├── lib │ ├── common.test.js │ └── interpolate.test.js │ └── spectaql │ ├── augmenters.test.js │ ├── graphql-loaders.test.js │ └── index.test.js ├── vendor-src ├── .gitignore ├── README.md ├── grunt-compile-handlebars │ ├── .gitignore │ ├── .jshintrc │ ├── .npmignore │ ├── .travis.yml │ ├── CONTRIBUTORS.md │ ├── Gruntfile.js │ ├── LICENSE-MIT │ ├── README.md │ ├── bin │ │ └── grunt-compile-handlebars │ ├── package.json │ ├── tasks │ │ └── compile-handlebars.js │ └── test │ │ ├── compile_handlebars_test.js │ │ ├── expected │ │ ├── allStatic.html │ │ ├── concatGlobbed.html │ │ ├── deep │ │ │ ├── deeper │ │ │ │ └── portuguese.html │ │ │ └── spanish.html │ │ ├── dynamicHandlebars.html │ │ ├── dynamicPost.html │ │ ├── dynamicPre.html │ │ ├── dynamicTemplate.html │ │ ├── dynamicTemplateData.html │ │ ├── fullPath.html │ │ ├── german.html │ │ ├── globalJsonGlobbedTemplate.html │ │ ├── helperAndPartial.html │ │ ├── oneTemplateToManyOutputs1.html │ │ ├── oneTemplateToManyOutputs2.html │ │ ├── prod.html │ │ ├── romanian.html │ │ └── sweedish.json │ │ ├── fixtures │ │ ├── data.json │ │ ├── deep │ │ │ ├── deeper │ │ │ │ ├── portuguese.handlebars │ │ │ │ └── portuguese.json │ │ │ ├── german.handlebars │ │ │ ├── german.json │ │ │ ├── globalJsonGlobbedTemplate.handlebars │ │ │ ├── globalJsonGlobbedTemplate.json │ │ │ ├── helperAndPartial.handlebars │ │ │ ├── helperAndPartial.json │ │ │ ├── romanian.handlebars │ │ │ ├── romanian.json │ │ │ ├── spanish.handlebars │ │ │ └── spanish.json │ │ ├── oneTemplateToManyOutputs1.json │ │ ├── oneTemplateToManyOutputs2.json │ │ ├── partials │ │ │ ├── foo.handlebars │ │ │ └── pathTest.handlebars │ │ ├── post-dev.html │ │ ├── pre-dev.html │ │ ├── sweedishData.json │ │ ├── sweedishTemplate.json │ │ └── template.handlebars │ │ ├── globals │ │ ├── info.json │ │ └── textspec.json │ │ ├── helpers │ │ └── super_helper.js │ │ └── index.html ├── grunt-embed │ ├── .gitignore │ ├── .travis.yml │ ├── Gruntfile.coffee │ ├── README.md │ ├── package.json │ ├── tasks │ │ └── embed.coffee │ └── test │ │ ├── embed_test.coffee │ │ ├── expected │ │ ├── custom.html │ │ └── default.html │ │ └── fixtures │ │ ├── input.html │ │ ├── scripts │ │ ├── log.js │ │ └── modernizr.js │ │ └── stylesheets │ │ ├── reset.css │ │ └── tiny.css ├── grunt-prettify │ ├── .gitattributes │ ├── .gitignore │ ├── .jsbeautifyrc │ ├── .jshintrc │ ├── .travis.yml │ ├── .verbrc.md │ ├── CHANGELOG │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE-MIT │ ├── README.md │ ├── docs │ │ ├── examples.md │ │ ├── options.md │ │ ├── overview.md │ │ └── quickstart.md │ ├── package.json │ ├── tasks │ │ └── prettify.js │ └── test │ │ ├── actual │ │ ├── assets │ │ │ ├── bootstrap.css │ │ │ └── highlight.js │ │ ├── custom_indentation │ │ │ ├── basic.html │ │ │ ├── conditional-comment-output.html │ │ │ ├── gist.html │ │ │ ├── index.html │ │ │ ├── markdown.html │ │ │ └── partials.html │ │ ├── defaults │ │ │ ├── basic.html │ │ │ ├── conditional-comment-output.html │ │ │ ├── gist.html │ │ │ ├── index.html │ │ │ ├── markdown.html │ │ │ └── partials.html │ │ ├── jsbeautifyrc │ │ │ ├── basic.html │ │ │ ├── conditional-comment-output.html │ │ │ ├── gist.html │ │ │ ├── index.html │ │ │ ├── markdown.html │ │ │ └── partials.html │ │ ├── padcomments │ │ │ ├── basic.html │ │ │ ├── conditional-comment-output.html │ │ │ ├── gist.html │ │ │ ├── index.html │ │ │ ├── markdown.html │ │ │ └── partials.html │ │ ├── single │ │ │ └── index.html │ │ └── ugly │ │ │ ├── basic.html │ │ │ ├── conditional-comment-output.html │ │ │ ├── gist.html │ │ │ ├── index.html │ │ │ ├── markdown.html │ │ │ └── partials.html │ │ ├── fixtures │ │ ├── content │ │ │ ├── code.md │ │ │ └── links.md │ │ ├── data │ │ │ ├── alert.json │ │ │ └── button.json │ │ ├── includes │ │ │ ├── alert.hbs │ │ │ ├── button.hbs │ │ │ └── nav.hbs │ │ ├── layouts │ │ │ ├── comments-example.hbs │ │ │ ├── default.hbs │ │ │ └── markdown.hbs │ │ └── pages │ │ │ ├── basic.hbs │ │ │ ├── conditional-comment-output.hbs │ │ │ ├── gist.md │ │ │ ├── index.hbs │ │ │ ├── markdown.hbs │ │ │ └── partials.hbs │ │ └── prettify_test.js ├── reorient-css │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ ├── expected │ │ ├── deeper.css │ │ ├── moving-up.css │ │ └── staying-level.css │ │ ├── fixtures │ │ └── sample.css │ │ └── test.js └── resource-embedder │ ├── .gitignore │ ├── .travis.yml │ ├── Gruntfile.coffee │ ├── README.md │ ├── index.js │ ├── package.json │ ├── src │ ├── get-line-indent.coffee │ ├── parse-file-size.coffee │ ├── resource-embedder.coffee │ └── resource.coffee │ └── test │ ├── fixtures │ ├── expected │ │ ├── messy.html │ │ └── urls.css │ ├── messy.html │ ├── scripts │ │ ├── big.js │ │ ├── ga.js │ │ ├── log.js │ │ └── mm.js │ └── styles │ │ ├── big.css │ │ ├── tiny.css │ │ └── urls.css │ ├── get-line-indent_test.coffee │ ├── parse-file-size_test.coffee │ ├── resource-embedder_test.coffee │ └── resource_test.coffee └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/actions/test-vendor-package/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.github/actions/test-vendor-package/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.github/workflows/lint-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /BREAKING_CHANGES_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/BREAKING_CHANGES_1.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/build-vendor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/bin/build-vendor.mjs -------------------------------------------------------------------------------- /bin/generateExampleData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/bin/generateExampleData.js -------------------------------------------------------------------------------- /bin/spectaql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/bin/spectaql.js -------------------------------------------------------------------------------- /config-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/config-example.yml -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/build-e2e.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/dev/build-e2e.mjs -------------------------------------------------------------------------------- /dev/echoDirectiveSdl.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/dev/echoDirectiveSdl.mjs -------------------------------------------------------------------------------- /dev/ensure-npm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/dev/ensure-npm.mjs -------------------------------------------------------------------------------- /dev/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/dev/utils.mjs -------------------------------------------------------------------------------- /examples/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/config.yml -------------------------------------------------------------------------------- /examples/customizations/examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/customizations/examples/index.js -------------------------------------------------------------------------------- /examples/data/intro-items-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/data/intro-items-markdown.md -------------------------------------------------------------------------------- /examples/data/introspection-with-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/data/introspection-with-metadata.json -------------------------------------------------------------------------------- /examples/data/introspection-without-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/data/introspection-without-metadata.json -------------------------------------------------------------------------------- /examples/data/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/data/metadata.json -------------------------------------------------------------------------------- /examples/data/schema-part2.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/data/schema-part2.gql -------------------------------------------------------------------------------- /examples/data/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/data/schema.gql -------------------------------------------------------------------------------- /examples/output/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/output/images/favicon.png -------------------------------------------------------------------------------- /examples/output/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/output/images/logo.png -------------------------------------------------------------------------------- /examples/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/output/index.html -------------------------------------------------------------------------------- /examples/output/javascripts/spectaql.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/output/javascripts/spectaql.min.js -------------------------------------------------------------------------------- /examples/output/stylesheets/spectaql.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/output/stylesheets/spectaql.min.css -------------------------------------------------------------------------------- /examples/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/themes/README.md -------------------------------------------------------------------------------- /examples/themes/deep-nesting-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/themes/deep-nesting-data/README.md -------------------------------------------------------------------------------- /examples/themes/deep-nesting-data/data.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/themes/deep-nesting-data/data.mjs -------------------------------------------------------------------------------- /examples/themes/my-partial-theme/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/themes/my-partial-theme/data/index.js -------------------------------------------------------------------------------- /examples/themes/my-partial-theme/helpers/dumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/themes/my-partial-theme/helpers/dumb.js -------------------------------------------------------------------------------- /examples/themes/my-partial-theme/javascripts/hello.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, World!') 2 | -------------------------------------------------------------------------------- /examples/themes/my-partial-theme/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/examples/themes/my-partial-theme/stylesheets/custom.css -------------------------------------------------------------------------------- /examples/themes/my-partial-theme/views/partials/graphql/query.hbs: -------------------------------------------------------------------------------- 1 | {{ dumb }}, but Query!
-------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/index.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/lib/common.js -------------------------------------------------------------------------------- /src/lib/gruntConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/lib/gruntConfig.js -------------------------------------------------------------------------------- /src/lib/interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/lib/interpolation.js -------------------------------------------------------------------------------- /src/lib/loadYaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/lib/loadYaml.js -------------------------------------------------------------------------------- /src/spectaql/augmenters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/augmenters.js -------------------------------------------------------------------------------- /src/spectaql/build-schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/build-schemas.js -------------------------------------------------------------------------------- /src/spectaql/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/directive.js -------------------------------------------------------------------------------- /src/spectaql/generate-graphql-example-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/generate-graphql-example-data.js -------------------------------------------------------------------------------- /src/spectaql/graphql-hl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/graphql-hl.js -------------------------------------------------------------------------------- /src/spectaql/graphql-loaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/graphql-loaders.js -------------------------------------------------------------------------------- /src/spectaql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/index.js -------------------------------------------------------------------------------- /src/spectaql/metadata-loaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/metadata-loaders.js -------------------------------------------------------------------------------- /src/spectaql/pre-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/pre-process.js -------------------------------------------------------------------------------- /src/spectaql/type-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/type-helpers.js -------------------------------------------------------------------------------- /src/spectaql/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/spectaql/utils.js -------------------------------------------------------------------------------- /src/themes/basic/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/basic/stylesheets/main.scss -------------------------------------------------------------------------------- /src/themes/default/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/data/index.js -------------------------------------------------------------------------------- /src/themes/default/helpers/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/and.js -------------------------------------------------------------------------------- /src/themes/default/helpers/ariaLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/ariaLevel.js -------------------------------------------------------------------------------- /src/themes/default/helpers/codify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/codify.js -------------------------------------------------------------------------------- /src/themes/default/helpers/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/concat.js -------------------------------------------------------------------------------- /src/themes/default/helpers/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/empty.js -------------------------------------------------------------------------------- /src/themes/default/helpers/equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/equal.js -------------------------------------------------------------------------------- /src/themes/default/helpers/firstTruthy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/firstTruthy.js -------------------------------------------------------------------------------- /src/themes/default/helpers/generateApiEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/generateApiEndpoints.js -------------------------------------------------------------------------------- /src/themes/default/helpers/graphql-scalars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/graphql-scalars.js -------------------------------------------------------------------------------- /src/themes/default/helpers/htmlId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/htmlId.js -------------------------------------------------------------------------------- /src/themes/default/helpers/indefiniteArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/indefiniteArticle.js -------------------------------------------------------------------------------- /src/themes/default/helpers/interpolateReferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/interpolateReferences.js -------------------------------------------------------------------------------- /src/themes/default/helpers/itemHeadingTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/itemHeadingTag.js -------------------------------------------------------------------------------- /src/themes/default/helpers/kebabCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/kebabCase.js -------------------------------------------------------------------------------- /src/themes/default/helpers/loadTextFromFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/loadTextFromFile.js -------------------------------------------------------------------------------- /src/themes/default/helpers/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/math.js -------------------------------------------------------------------------------- /src/themes/default/helpers/md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/md.js -------------------------------------------------------------------------------- /src/themes/default/helpers/mdLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/mdLink.js -------------------------------------------------------------------------------- /src/themes/default/helpers/mdTypeLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/mdTypeLink.js -------------------------------------------------------------------------------- /src/themes/default/helpers/nempty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/nempty.js -------------------------------------------------------------------------------- /src/themes/default/helpers/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/not.js -------------------------------------------------------------------------------- /src/themes/default/helpers/notEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/notEqual.js -------------------------------------------------------------------------------- /src/themes/default/helpers/or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/or.js -------------------------------------------------------------------------------- /src/themes/default/helpers/printGraphQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/printGraphQL.js -------------------------------------------------------------------------------- /src/themes/default/helpers/printJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/printJSON.js -------------------------------------------------------------------------------- /src/themes/default/helpers/schemaReferenceHref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/schemaReferenceHref.js -------------------------------------------------------------------------------- /src/themes/default/helpers/spanWrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/spanWrap.js -------------------------------------------------------------------------------- /src/themes/default/helpers/stripTrailing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/stripTrailing.js -------------------------------------------------------------------------------- /src/themes/default/helpers/ternary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/helpers/ternary.js -------------------------------------------------------------------------------- /src/themes/default/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/javascripts/main.js -------------------------------------------------------------------------------- /src/themes/default/javascripts/scroll-spy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/javascripts/scroll-spy.js -------------------------------------------------------------------------------- /src/themes/default/javascripts/toggle-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/javascripts/toggle-menu.js -------------------------------------------------------------------------------- /src/themes/default/javascripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/javascripts/util.js -------------------------------------------------------------------------------- /src/themes/default/stylesheets/_monokai.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/stylesheets/_monokai.scss -------------------------------------------------------------------------------- /src/themes/default/stylesheets/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/stylesheets/base.scss -------------------------------------------------------------------------------- /src/themes/default/stylesheets/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/stylesheets/custom.scss -------------------------------------------------------------------------------- /src/themes/default/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/stylesheets/main.scss -------------------------------------------------------------------------------- /src/themes/default/stylesheets/syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/stylesheets/syntax-highlighting.scss -------------------------------------------------------------------------------- /src/themes/default/views/embedded.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/embedded.hbs -------------------------------------------------------------------------------- /src/themes/default/views/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/main.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/_description-with-defaults.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/_description-with-defaults.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/_query-or-mutation-arguments.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/_query-or-mutation-arguments.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/_query-or-mutation-or-subscription.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/_query-or-mutation-or-subscription.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/field-arguments.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/field-arguments.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/_fields.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/_fields.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/enum.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/enum.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/input-object.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/input-object.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/interface.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/interface.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/object.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/object.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/scalar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/scalar.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/kinds/union.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/kinds/union.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/mutation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/mutation.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/name-and-type.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/name-and-type.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/query.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/query.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/subscription.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/subscription.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/graphql/type.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/graphql/type.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/content/introduction/item.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/content/introduction/item.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/content/introduction/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/content/introduction/main.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/content/introduction/welcome.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/content/introduction/welcome.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/content/item.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/content/item.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/content/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/content/main.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/head.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/links-scripts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/links-scripts.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/nav/item.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/nav/item.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/nav/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/nav/main.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/nav/mobile-navbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/nav/mobile-navbar.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/nav/section-item.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/nav/section-item.hbs -------------------------------------------------------------------------------- /src/themes/default/views/partials/layout/page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/default/views/partials/layout/page.hbs -------------------------------------------------------------------------------- /src/themes/spectaql/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/src/themes/spectaql/stylesheets/main.scss -------------------------------------------------------------------------------- /static/SpectaQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/static/SpectaQL.png -------------------------------------------------------------------------------- /static/anvil-api-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/static/anvil-api-screenshot.jpg -------------------------------------------------------------------------------- /static/anvil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/static/anvil.png -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/README.md -------------------------------------------------------------------------------- /test/e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/.gitignore -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/alive.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/alive.mjs -------------------------------------------------------------------------------- /test/e2e/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/config.yml -------------------------------------------------------------------------------- /test/e2e/custom-theme/data/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/custom-theme/data/index.mjs -------------------------------------------------------------------------------- /test/e2e/custom-theme/helpers/dumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/custom-theme/helpers/dumb.js -------------------------------------------------------------------------------- /test/e2e/custom-theme/javascripts/hello.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, World!') 2 | -------------------------------------------------------------------------------- /test/e2e/custom-theme/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/custom-theme/stylesheets/custom.css -------------------------------------------------------------------------------- /test/e2e/custom-theme/views/partials/graphql/query.hbs: -------------------------------------------------------------------------------- 1 | {{ dumb }}, but Query!
-------------------------------------------------------------------------------- /test/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/e2e/package.json -------------------------------------------------------------------------------- /test/fixtures/bad-schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/bad-schema.gql -------------------------------------------------------------------------------- /test/fixtures/examplesProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/examplesProcessor.js -------------------------------------------------------------------------------- /test/fixtures/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/favicon.png -------------------------------------------------------------------------------- /test/fixtures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/logo.png -------------------------------------------------------------------------------- /test/fixtures/non-standard-query-mutation-schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/non-standard-query-mutation-schema.gql -------------------------------------------------------------------------------- /test/fixtures/schema-with-spectaql-directives.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/schema-with-spectaql-directives.gql -------------------------------------------------------------------------------- /test/fixtures/simple-schema-supplement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/simple-schema-supplement.txt -------------------------------------------------------------------------------- /test/fixtures/simple-schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/fixtures/simple-schema.gql -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/mocha-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/mocha-config.js -------------------------------------------------------------------------------- /test/mocha-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/mocha-environment.js -------------------------------------------------------------------------------- /test/mocha-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/mocha-setup.js -------------------------------------------------------------------------------- /test/src/helpers/generateApiEndpoints.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/helpers/generateApiEndpoints.test.js -------------------------------------------------------------------------------- /test/src/helpers/interpolateReferences.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/helpers/interpolateReferences.test.js -------------------------------------------------------------------------------- /test/src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/index.test.js -------------------------------------------------------------------------------- /test/src/lib/common.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/lib/common.test.js -------------------------------------------------------------------------------- /test/src/lib/interpolate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/lib/interpolate.test.js -------------------------------------------------------------------------------- /test/src/spectaql/augmenters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/spectaql/augmenters.test.js -------------------------------------------------------------------------------- /test/src/spectaql/graphql-loaders.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/spectaql/graphql-loaders.test.js -------------------------------------------------------------------------------- /test/src/spectaql/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/test/src/spectaql/index.test.js -------------------------------------------------------------------------------- /vendor-src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/.gitignore -------------------------------------------------------------------------------- /vendor-src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/README.md -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | yarn.lock 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/.jshintrc -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .git 3 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/.travis.yml -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/CONTRIBUTORS.md -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/Gruntfile.js -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/LICENSE-MIT -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/README.md -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/bin/grunt-compile-handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/bin/grunt-compile-handlebars -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/package.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/tasks/compile-handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/tasks/compile-handlebars.js -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/compile_handlebars_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/compile_handlebars_test.js -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/allStatic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/allStatic.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/concatGlobbed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/concatGlobbed.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/deep/deeper/portuguese.html: -------------------------------------------------------------------------------- 1 |

Ola, mundo

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/deep/spanish.html: -------------------------------------------------------------------------------- 1 |

hola, mundo

-------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/dynamicHandlebars.html: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/dynamicPost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/dynamicPost.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/dynamicPre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/dynamicPre.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/dynamicTemplate.html: -------------------------------------------------------------------------------- 1 |

Hello, World

-------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/dynamicTemplateData.html: -------------------------------------------------------------------------------- 1 |

Hallo, Welt

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/fullPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/fullPath.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/german.html: -------------------------------------------------------------------------------- 1 |

Hallo, Welt

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/globalJsonGlobbedTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/globalJsonGlobbedTemplate.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/helperAndPartial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/helperAndPartial.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/oneTemplateToManyOutputs1.html: -------------------------------------------------------------------------------- 1 |

Hello, World

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/oneTemplateToManyOutputs2.html: -------------------------------------------------------------------------------- 1 |

Hallo, Welt

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/prod.html: -------------------------------------------------------------------------------- 1 |

Hello, World

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/romanian.html: -------------------------------------------------------------------------------- 1 |

Alo, mundo

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/expected/sweedish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/expected/sweedish.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/data.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/deeper/portuguese.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/deeper/portuguese.handlebars -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/deeper/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/deeper/portuguese.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/german.handlebars: -------------------------------------------------------------------------------- 1 |

{{Anrede}}{{Zeichensetzung}} {{Lage}}

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/german.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/globalJsonGlobbedTemplate.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/globalJsonGlobbedTemplate.handlebars -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/globalJsonGlobbedTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/globalJsonGlobbedTemplate.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/helperAndPartial.handlebars: -------------------------------------------------------------------------------- 1 | {{super_helper}} 2 | {{> foo}} -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/helperAndPartial.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "world" 3 | } -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/romanian.handlebars: -------------------------------------------------------------------------------- 1 |

{{salut}}{{punctuație}} {{localizare}}

2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/romanian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/romanian.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/spanish.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/spanish.handlebars -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/deep/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/deep/spanish.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/oneTemplateToManyOutputs1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/oneTemplateToManyOutputs1.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/oneTemplateToManyOutputs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/oneTemplateToManyOutputs2.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/partials/foo.handlebars: -------------------------------------------------------------------------------- 1 |
foo partial
2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/partials/pathTest.handlebars: -------------------------------------------------------------------------------- 1 |
full paths!!!
2 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/post-dev.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/pre-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/pre-dev.html -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/sweedishData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/sweedishData.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/sweedishTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/sweedishTemplate.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/fixtures/template.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/fixtures/template.handlebars -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/globals/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/globals/info.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/globals/textspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/globals/textspec.json -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/helpers/super_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/helpers/super_helper.js -------------------------------------------------------------------------------- /vendor-src/grunt-compile-handlebars/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-compile-handlebars/test/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-embed/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | yarn.lock 4 | -------------------------------------------------------------------------------- /vendor-src/grunt-embed/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/.travis.yml -------------------------------------------------------------------------------- /vendor-src/grunt-embed/Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/Gruntfile.coffee -------------------------------------------------------------------------------- /vendor-src/grunt-embed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/README.md -------------------------------------------------------------------------------- /vendor-src/grunt-embed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/package.json -------------------------------------------------------------------------------- /vendor-src/grunt-embed/tasks/embed.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/tasks/embed.coffee -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/embed_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/test/embed_test.coffee -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/expected/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/test/expected/custom.html -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/expected/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/test/expected/default.html -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/fixtures/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/test/fixtures/input.html -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/fixtures/scripts/log.js: -------------------------------------------------------------------------------- 1 | console.log('Something'); 2 | -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/fixtures/scripts/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/test/fixtures/scripts/modernizr.js -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/fixtures/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-embed/test/fixtures/stylesheets/reset.css -------------------------------------------------------------------------------- /vendor-src/grunt-embed/test/fixtures/stylesheets/tiny.css: -------------------------------------------------------------------------------- 1 | body { background: red; } 2 | -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/.gitattributes -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/.gitignore -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/.jsbeautifyrc -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/.jshintrc -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/.travis.yml -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/.verbrc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/.verbrc.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/CHANGELOG -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/Gruntfile.js -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/LICENSE-MIT -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/README.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/docs/examples.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/docs/options.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/docs/overview.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/docs/quickstart.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/package.json -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/tasks/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/tasks/prettify.js -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/assets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/assets/bootstrap.css -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/assets/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/assets/highlight.js -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/custom_indentation/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/custom_indentation/basic.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/custom_indentation/conditional-comment-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/custom_indentation/conditional-comment-output.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/custom_indentation/gist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/custom_indentation/gist.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/custom_indentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/custom_indentation/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/custom_indentation/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/custom_indentation/markdown.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/custom_indentation/partials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/custom_indentation/partials.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/defaults/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/defaults/basic.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/defaults/conditional-comment-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/defaults/conditional-comment-output.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/defaults/gist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/defaults/gist.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/defaults/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/defaults/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/defaults/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/defaults/markdown.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/defaults/partials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/defaults/partials.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/jsbeautifyrc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/jsbeautifyrc/basic.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/jsbeautifyrc/conditional-comment-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/jsbeautifyrc/conditional-comment-output.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/jsbeautifyrc/gist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/jsbeautifyrc/gist.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/jsbeautifyrc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/jsbeautifyrc/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/jsbeautifyrc/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/jsbeautifyrc/markdown.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/jsbeautifyrc/partials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/jsbeautifyrc/partials.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/padcomments/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/padcomments/basic.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/padcomments/conditional-comment-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/padcomments/conditional-comment-output.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/padcomments/gist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/padcomments/gist.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/padcomments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/padcomments/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/padcomments/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/padcomments/markdown.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/padcomments/partials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/padcomments/partials.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/single/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/single/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/ugly/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/ugly/basic.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/ugly/conditional-comment-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/ugly/conditional-comment-output.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/ugly/gist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/ugly/gist.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/ugly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/ugly/index.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/ugly/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/ugly/markdown.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/actual/ugly/partials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/actual/ugly/partials.html -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/content/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/content/code.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/content/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/content/links.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/data/alert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/data/alert.json -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/data/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/data/button.json -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/includes/alert.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/includes/alert.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/includes/button.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/includes/button.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/includes/nav.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/includes/nav.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/layouts/comments-example.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/layouts/comments-example.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/layouts/default.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/layouts/markdown.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/layouts/markdown.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/pages/basic.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/pages/basic.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/pages/conditional-comment-output.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/pages/conditional-comment-output.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/pages/gist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/pages/gist.md -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/pages/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/pages/index.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/pages/markdown.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/pages/markdown.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/fixtures/pages/partials.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/fixtures/pages/partials.hbs -------------------------------------------------------------------------------- /vendor-src/grunt-prettify/test/prettify_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/grunt-prettify/test/prettify_test.js -------------------------------------------------------------------------------- /vendor-src/reorient-css/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | yarn.lock 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /vendor-src/reorient-css/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/.jshintrc -------------------------------------------------------------------------------- /vendor-src/reorient-css/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/.travis.yml -------------------------------------------------------------------------------- /vendor-src/reorient-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/README.md -------------------------------------------------------------------------------- /vendor-src/reorient-css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/index.js -------------------------------------------------------------------------------- /vendor-src/reorient-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/package.json -------------------------------------------------------------------------------- /vendor-src/reorient-css/test/expected/deeper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/test/expected/deeper.css -------------------------------------------------------------------------------- /vendor-src/reorient-css/test/expected/moving-up.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/test/expected/moving-up.css -------------------------------------------------------------------------------- /vendor-src/reorient-css/test/expected/staying-level.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/test/expected/staying-level.css -------------------------------------------------------------------------------- /vendor-src/reorient-css/test/fixtures/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/test/fixtures/sample.css -------------------------------------------------------------------------------- /vendor-src/reorient-css/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/reorient-css/test/test.js -------------------------------------------------------------------------------- /vendor-src/resource-embedder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/.gitignore -------------------------------------------------------------------------------- /vendor-src/resource-embedder/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/.travis.yml -------------------------------------------------------------------------------- /vendor-src/resource-embedder/Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/Gruntfile.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/README.md -------------------------------------------------------------------------------- /vendor-src/resource-embedder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/index.js -------------------------------------------------------------------------------- /vendor-src/resource-embedder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/package.json -------------------------------------------------------------------------------- /vendor-src/resource-embedder/src/get-line-indent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/src/get-line-indent.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/src/parse-file-size.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/src/parse-file-size.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/src/resource-embedder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/src/resource-embedder.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/src/resource.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/src/resource.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/expected/messy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/expected/messy.html -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/expected/urls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/expected/urls.css -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/messy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/messy.html -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/scripts/big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/scripts/big.js -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/scripts/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/scripts/ga.js -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/scripts/log.js: -------------------------------------------------------------------------------- 1 | console.log('A tiny one-line script'); -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/scripts/mm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/scripts/mm.js -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/styles/big.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/styles/big.css -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/styles/tiny.css: -------------------------------------------------------------------------------- 1 | body { background: red; } 2 | -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/fixtures/styles/urls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/fixtures/styles/urls.css -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/get-line-indent_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/get-line-indent_test.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/parse-file-size_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/parse-file-size_test.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/resource-embedder_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/resource-embedder_test.coffee -------------------------------------------------------------------------------- /vendor-src/resource-embedder/test/resource_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/vendor-src/resource-embedder/test/resource_test.coffee -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvilco/spectaql/HEAD/yarn.lock --------------------------------------------------------------------------------