├── .editorconfig ├── .eslintignore ├── .github ├── FUNDING.yml └── workflows │ └── CI.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .vscode ├── extensions.json └── settings.json ├── .yarn └── releases │ └── yarn-1.22.4.js ├── .yarnrc ├── LICENSE ├── README.md ├── codecov.yml ├── lib ├── index.js └── index.test.js ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: vvo 4 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.19.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.22.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.yarn/releases/yarn-1.22.4.js -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/.yarnrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/codecov.yml -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | export default function lib() { 2 | return true; 3 | } 4 | -------------------------------------------------------------------------------- /lib/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/lib/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvo/javascript-library-template/HEAD/yarn.lock --------------------------------------------------------------------------------