gitextract_y9qvqvon/ ├── .editorconfig ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── addon-docs.yml │ ├── ci.yml │ ├── plan-release.yml │ ├── publish.yml │ └── push-dist.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.cjs ├── .release-plan.json ├── .tool-versions ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── config/ │ └── ember-cli-update.json ├── ember-shepherd/ │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.cjs │ ├── .template-lintrc.cjs │ ├── addon-main.cjs │ ├── babel.config.json │ ├── eslint.config.mjs │ ├── package.json │ ├── rollup.config.mjs │ ├── src/ │ │ ├── .gitkeep │ │ ├── index.ts │ │ ├── services/ │ │ │ └── tour.ts │ │ ├── template-registry.ts │ │ ├── unpublished-development-types/ │ │ │ └── index.d.ts │ │ └── utils/ │ │ ├── buttons.ts │ │ └── dom.ts │ ├── tsconfig.json │ └── unpublished-development-types/ │ └── index.d.ts ├── package.json ├── pnpm-workspace.yaml └── test-app/ ├── .editorconfig ├── .ember-cli ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintignore ├── .stylelintrc.js ├── .template-lintrc.js ├── .watchmanconfig ├── README.md ├── app/ │ ├── app.ts │ ├── components/ │ │ └── .gitkeep │ ├── config/ │ │ └── environment.d.ts │ ├── controllers/ │ │ ├── .gitkeep │ │ └── docs/ │ │ └── demo.js │ ├── data.js │ ├── deprecation-workflow.ts │ ├── helpers/ │ │ └── .gitkeep │ ├── index.html │ ├── models/ │ │ └── .gitkeep │ ├── router.js │ ├── routes/ │ │ ├── .gitkeep │ │ └── docs/ │ │ └── demo.js │ ├── styles/ │ │ ├── app.css │ │ ├── fonts.css │ │ └── shepherd-theme.css │ └── templates/ │ ├── application.hbs │ ├── docs/ │ │ ├── demo.hbs │ │ ├── faq.md │ │ ├── index.md │ │ ├── not-found.hbs │ │ └── usage.md │ ├── docs.hbs │ └── index.hbs ├── config/ │ ├── addon-docs.js │ ├── deploy.js │ ├── ember-cli-update.json │ ├── ember-try.js │ ├── environment.js │ ├── optional-features.json │ └── targets.js ├── ember-cli-build.js ├── eslint.config.mjs ├── package.json ├── public/ │ ├── crossdomain.xml │ └── robots.txt ├── testem.js ├── tests/ │ ├── acceptance/ │ │ └── ember-shepherd-test.js │ ├── data.js │ ├── helpers/ │ │ ├── index.js │ │ └── index.ts │ ├── index.html │ ├── integration/ │ │ └── .gitkeep │ ├── test-helper.js │ ├── test-helper.ts │ └── unit/ │ ├── .gitkeep │ ├── services/ │ │ └── tour-test.js │ └── utils/ │ └── make-button-test.js ├── tsconfig.json └── types/ └── global.d.ts