├── .gitignore ├── LICENSE ├── README.md ├── bin └── create-expression-lib ├── package.json ├── src ├── cli.js └── main.js └── templates └── typescript ├── LICENSE ├── README.md ├── gitignore ├── jest.config.js ├── package-lock.json ├── package.json ├── prettier.config.js ├── rollup.config.js └── src ├── index.test.ts ├── index.ts └── otherFile.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-expression-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/bin/create-expression-lib -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/src/main.js -------------------------------------------------------------------------------- /templates/typescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/LICENSE -------------------------------------------------------------------------------- /templates/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/README.md -------------------------------------------------------------------------------- /templates/typescript/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/gitignore -------------------------------------------------------------------------------- /templates/typescript/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/jest.config.js -------------------------------------------------------------------------------- /templates/typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/package-lock.json -------------------------------------------------------------------------------- /templates/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/package.json -------------------------------------------------------------------------------- /templates/typescript/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/prettier.config.js -------------------------------------------------------------------------------- /templates/typescript/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/rollup.config.js -------------------------------------------------------------------------------- /templates/typescript/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/src/index.test.ts -------------------------------------------------------------------------------- /templates/typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/src/index.ts -------------------------------------------------------------------------------- /templates/typescript/src/otherFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motiondeveloper/create-expression-lib/HEAD/templates/typescript/src/otherFile.ts --------------------------------------------------------------------------------