├── .eslintignore ├── .eslintrc.js ├── .github ├── pull_request_template.md └── workflows │ ├── release.yml │ ├── verify-node.yml │ └── verify-windows.yml ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── README.md ├── babel.config.js ├── package.json ├── renovate.json ├── src ├── Generator.js ├── core.js ├── create.js └── generators │ ├── app-lit-element-ts │ ├── index.js │ └── templates │ │ ├── custom-elements.json │ │ ├── my-app.stories.ts │ │ ├── my-app.test.ts │ │ ├── my-app.ts │ │ ├── open-wc-logo.svg │ │ ├── package.json │ │ ├── static-demoing │ │ └── .storybook │ │ │ └── main.js │ │ ├── static-testing │ │ └── web-test-runner.config.js │ │ ├── static │ │ ├── README.md │ │ ├── index.html │ │ └── web-dev-server.config.js │ │ └── tsconfig.json │ ├── app-lit-element │ ├── index.js │ └── templates │ │ ├── custom-elements.json │ │ ├── my-app.js │ │ ├── my-app.stories.js │ │ ├── my-app.test.js │ │ ├── open-wc-logo.svg │ │ ├── package.json │ │ ├── static-demoing │ │ └── .storybook │ │ │ └── main.js │ │ ├── static-testing │ │ └── web-test-runner.config.js │ │ └── static │ │ ├── README.md │ │ ├── index.html │ │ └── web-dev-server.config.js │ ├── app │ ├── executeViaOptions.js │ ├── gatherMixins.js │ ├── header.js │ └── index.js │ ├── building-rollup-ts │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── rollup.config.js │ ├── building-rollup │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── rollup.config.js │ ├── common-repo │ ├── index.js │ └── templates │ │ ├── gitignore │ │ ├── package.json │ │ └── static │ │ ├── .editorconfig │ │ ├── .vscode │ │ └── extensions.json │ │ └── LICENSE │ ├── demoing-storybook-ts │ ├── index.js │ └── templates │ │ ├── package.json │ │ ├── static-scaffold │ │ └── stories │ │ │ └── index.stories.ts │ │ └── static │ │ └── .storybook │ │ └── main.js │ ├── demoing-storybook │ ├── index.js │ └── templates │ │ ├── package.json │ │ ├── static-scaffold │ │ └── stories │ │ │ └── index.stories.js │ │ └── static │ │ └── .storybook │ │ └── main.js │ ├── git-ignore-lock-files-in-diff │ └── static │ │ └── .gitattributes │ ├── linting-commitlint │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── commitlint.config.js │ ├── linting-eslint-ts │ ├── index.js │ └── templates │ │ └── package.json │ ├── linting-eslint │ ├── index.js │ └── templates │ │ └── package.json │ ├── linting-prettier-ts │ ├── index.js │ └── templates │ │ └── package.json │ ├── linting-prettier │ ├── index.js │ └── templates │ │ └── package.json │ ├── linting-ts │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── .husky │ │ └── pre-commit │ ├── linting-types-js │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── tsconfig.json │ ├── linting │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── .husky │ │ └── pre-commit │ ├── testing-ts │ ├── index.js │ └── templates │ │ ├── my-el.test.ts │ │ └── package.json │ ├── testing-wtr-ts │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── web-test-runner.config.js │ ├── testing-wtr │ ├── index.js │ └── templates │ │ ├── package.json │ │ └── static │ │ └── web-test-runner.config.js │ ├── testing │ ├── index.js │ └── templates │ │ ├── my-el.test.js │ │ └── package.json │ ├── wc-lit-element-ts │ ├── index.js │ └── templates │ │ ├── MyEl.ts │ │ ├── my-el.ts │ │ ├── package.json │ │ ├── partials │ │ ├── README.demoing.md │ │ ├── README.linting.md │ │ └── README.testing.md │ │ ├── static │ │ ├── README.md │ │ ├── demo │ │ │ └── index.html │ │ ├── src │ │ │ └── index.ts │ │ └── web-dev-server.config.js │ │ └── tsconfig.json │ └── wc-lit-element │ ├── index.js │ └── templates │ ├── MyEl.js │ ├── my-el.js │ ├── package.json │ ├── partials │ ├── README.demoing.md │ ├── README.linting.md │ └── README.testing.md │ └── static │ ├── README.md │ ├── demo │ └── index.html │ ├── index.js │ └── web-dev-server.config.js ├── test ├── core.test.js ├── generate-command.js ├── integration.test.js ├── snapshots │ ├── fully-loaded-app.output.txt │ └── fully-loaded-app │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .husky │ │ └── pre-commit │ │ ├── .storybook │ │ └── main.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ └── open-wc-logo.svg │ │ ├── index.html │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ └── scaffold-app.js │ │ ├── stories │ │ └── scaffold-app.stories.js │ │ ├── test │ │ └── scaffold-app.test.js │ │ ├── web-dev-server.config.js │ │ └── web-test-runner.config.js ├── template │ └── index.js └── update-snapshots.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## What I did 2 | 3 | 1. 4 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/verify-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/.github/workflows/verify-node.yml -------------------------------------------------------------------------------- /.github/workflows/verify-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/.github/workflows/verify-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.20.3 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/Generator.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/core.js -------------------------------------------------------------------------------- /src/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/create.js -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/index.js -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/custom-elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/custom-elements.json -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/my-app.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/my-app.stories.ts -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/my-app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/my-app.test.ts -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/my-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/my-app.ts -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/open-wc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/open-wc-logo.svg -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/static-demoing/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/static-demoing/.storybook/main.js -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/static-testing/web-test-runner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/static-testing/web-test-runner.config.js -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/static/README.md -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/static/index.html -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/static/web-dev-server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/static/web-dev-server.config.js -------------------------------------------------------------------------------- /src/generators/app-lit-element-ts/templates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element-ts/templates/tsconfig.json -------------------------------------------------------------------------------- /src/generators/app-lit-element/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/index.js -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/custom-elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/custom-elements.json -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/my-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/my-app.js -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/my-app.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/my-app.stories.js -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/my-app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/my-app.test.js -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/open-wc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/open-wc-logo.svg -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/package.json -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/static-demoing/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/static-demoing/.storybook/main.js -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/static-testing/web-test-runner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/static-testing/web-test-runner.config.js -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/static/README.md -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/static/index.html -------------------------------------------------------------------------------- /src/generators/app-lit-element/templates/static/web-dev-server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app-lit-element/templates/static/web-dev-server.config.js -------------------------------------------------------------------------------- /src/generators/app/executeViaOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app/executeViaOptions.js -------------------------------------------------------------------------------- /src/generators/app/gatherMixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app/gatherMixins.js -------------------------------------------------------------------------------- /src/generators/app/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app/header.js -------------------------------------------------------------------------------- /src/generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/app/index.js -------------------------------------------------------------------------------- /src/generators/building-rollup-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/building-rollup-ts/index.js -------------------------------------------------------------------------------- /src/generators/building-rollup-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/building-rollup-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/building-rollup-ts/templates/static/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/building-rollup-ts/templates/static/rollup.config.js -------------------------------------------------------------------------------- /src/generators/building-rollup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/building-rollup/index.js -------------------------------------------------------------------------------- /src/generators/building-rollup/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/building-rollup/templates/package.json -------------------------------------------------------------------------------- /src/generators/building-rollup/templates/static/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/building-rollup/templates/static/rollup.config.js -------------------------------------------------------------------------------- /src/generators/common-repo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/common-repo/index.js -------------------------------------------------------------------------------- /src/generators/common-repo/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/common-repo/templates/gitignore -------------------------------------------------------------------------------- /src/generators/common-repo/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/common-repo/templates/package.json -------------------------------------------------------------------------------- /src/generators/common-repo/templates/static/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/common-repo/templates/static/.editorconfig -------------------------------------------------------------------------------- /src/generators/common-repo/templates/static/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/common-repo/templates/static/.vscode/extensions.json -------------------------------------------------------------------------------- /src/generators/common-repo/templates/static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/common-repo/templates/static/LICENSE -------------------------------------------------------------------------------- /src/generators/demoing-storybook-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook-ts/index.js -------------------------------------------------------------------------------- /src/generators/demoing-storybook-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/demoing-storybook-ts/templates/static-scaffold/stories/index.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook-ts/templates/static-scaffold/stories/index.stories.ts -------------------------------------------------------------------------------- /src/generators/demoing-storybook-ts/templates/static/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook-ts/templates/static/.storybook/main.js -------------------------------------------------------------------------------- /src/generators/demoing-storybook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook/index.js -------------------------------------------------------------------------------- /src/generators/demoing-storybook/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook/templates/package.json -------------------------------------------------------------------------------- /src/generators/demoing-storybook/templates/static-scaffold/stories/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook/templates/static-scaffold/stories/index.stories.js -------------------------------------------------------------------------------- /src/generators/demoing-storybook/templates/static/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/demoing-storybook/templates/static/.storybook/main.js -------------------------------------------------------------------------------- /src/generators/git-ignore-lock-files-in-diff/static/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/git-ignore-lock-files-in-diff/static/.gitattributes -------------------------------------------------------------------------------- /src/generators/linting-commitlint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-commitlint/index.js -------------------------------------------------------------------------------- /src/generators/linting-commitlint/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-commitlint/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-commitlint/templates/static/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /src/generators/linting-eslint-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-eslint-ts/index.js -------------------------------------------------------------------------------- /src/generators/linting-eslint-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-eslint-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-eslint/index.js -------------------------------------------------------------------------------- /src/generators/linting-eslint/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-eslint/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-prettier-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-prettier-ts/index.js -------------------------------------------------------------------------------- /src/generators/linting-prettier-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-prettier-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-prettier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-prettier/index.js -------------------------------------------------------------------------------- /src/generators/linting-prettier/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-prettier/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-ts/index.js -------------------------------------------------------------------------------- /src/generators/linting-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-ts/templates/static/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | ./node_modules/.bin/lint-staged -------------------------------------------------------------------------------- /src/generators/linting-types-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-types-js/index.js -------------------------------------------------------------------------------- /src/generators/linting-types-js/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-types-js/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting-types-js/templates/static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting-types-js/templates/static/tsconfig.json -------------------------------------------------------------------------------- /src/generators/linting/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting/index.js -------------------------------------------------------------------------------- /src/generators/linting/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/linting/templates/package.json -------------------------------------------------------------------------------- /src/generators/linting/templates/static/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | ./node_modules/.bin/lint-staged -------------------------------------------------------------------------------- /src/generators/testing-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-ts/index.js -------------------------------------------------------------------------------- /src/generators/testing-ts/templates/my-el.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-ts/templates/my-el.test.ts -------------------------------------------------------------------------------- /src/generators/testing-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/testing-wtr-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-wtr-ts/index.js -------------------------------------------------------------------------------- /src/generators/testing-wtr-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-wtr-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/testing-wtr-ts/templates/static/web-test-runner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-wtr-ts/templates/static/web-test-runner.config.js -------------------------------------------------------------------------------- /src/generators/testing-wtr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-wtr/index.js -------------------------------------------------------------------------------- /src/generators/testing-wtr/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-wtr/templates/package.json -------------------------------------------------------------------------------- /src/generators/testing-wtr/templates/static/web-test-runner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing-wtr/templates/static/web-test-runner.config.js -------------------------------------------------------------------------------- /src/generators/testing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing/index.js -------------------------------------------------------------------------------- /src/generators/testing/templates/my-el.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing/templates/my-el.test.js -------------------------------------------------------------------------------- /src/generators/testing/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/testing/templates/package.json -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/index.js -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/MyEl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/MyEl.ts -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/my-el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/my-el.ts -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/package.json -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/partials/README.demoing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/partials/README.demoing.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/partials/README.linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/partials/README.linting.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/partials/README.testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/partials/README.testing.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/static/README.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/static/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/static/demo/index.html -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/static/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/static/src/index.ts -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/static/web-dev-server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/static/web-dev-server.config.js -------------------------------------------------------------------------------- /src/generators/wc-lit-element-ts/templates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element-ts/templates/tsconfig.json -------------------------------------------------------------------------------- /src/generators/wc-lit-element/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/index.js -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/MyEl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/MyEl.js -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/my-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/my-el.js -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/package.json -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/partials/README.demoing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/partials/README.demoing.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/partials/README.linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/partials/README.linting.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/partials/README.testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/partials/README.testing.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/static/README.md -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/static/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/static/demo/index.html -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/static/index.js -------------------------------------------------------------------------------- /src/generators/wc-lit-element/templates/static/web-dev-server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/src/generators/wc-lit-element/templates/static/web-dev-server.config.js -------------------------------------------------------------------------------- /test/core.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/core.test.js -------------------------------------------------------------------------------- /test/generate-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/generate-command.js -------------------------------------------------------------------------------- /test/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/integration.test.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app.output.txt -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/.editorconfig -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/.gitignore -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | ./node_modules/.bin/lint-staged -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/.storybook/main.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/LICENSE -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/README.md -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/assets/open-wc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/assets/open-wc-logo.svg -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/index.html -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/package.json -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/rollup.config.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/src/scaffold-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/src/scaffold-app.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/stories/scaffold-app.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/stories/scaffold-app.stories.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/test/scaffold-app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/test/scaffold-app.test.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/web-dev-server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/web-dev-server.config.js -------------------------------------------------------------------------------- /test/snapshots/fully-loaded-app/web-test-runner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/snapshots/fully-loaded-app/web-test-runner.config.js -------------------------------------------------------------------------------- /test/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/template/index.js -------------------------------------------------------------------------------- /test/update-snapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/test/update-snapshots.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-wc/create/HEAD/yarn.lock --------------------------------------------------------------------------------