Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acot-a11y/create-acot-preset
:diamond_shape_with_a_dot_inside: Create acot preset project.
https://github.com/acot-a11y/create-acot-preset
acot acot-preset build-tools
Last synced: 2 months ago
JSON representation
:diamond_shape_with_a_dot_inside: Create acot preset project.
- Host: GitHub
- URL: https://github.com/acot-a11y/create-acot-preset
- Owner: acot-a11y
- License: mit
- Created: 2021-03-28T13:27:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-27T04:24:27.000Z (5 months ago)
- Last Synced: 2024-09-27T14:16:08.428Z (4 months ago)
- Topics: acot, acot-preset, build-tools
- Language: TypeScript
- Homepage: https://github.com/acot-a11y/acot
- Size: 31.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# create-acot-preset
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/acot-a11y/create-acot-preset/CI?style=flat-square)](https://github.com/acot-a11y/create-acot-preset/actions/workflows/ci.yml)
[![npm](https://img.shields.io/npm/v/create-acot-preset?style=flat-square)](https://www.npmjs.com/package/create-acot-preset)
[![MIT LICENSE](https://img.shields.io/github/license/acot-a11y/create-acot-preset?label=license&style=flat-square)](./LICENSE)Create acot preset project.
## Quick Started
```bash
$ npx create-acot-preset foo
$ cd acot-preset-foo
$ npm run build
```A template for the `acot-preset-foo` package is created. See [template.md](./template.md) for the generated structure.
### Next
See [Creating a preset](https://github.com/acot-a11y/acot/blob/canary/docs/developer-guide/preset.md) and develop your preset. Happy Hacking!
## Usage
Usage of `create-acot-preset` command.
```
Create acot preset project.USAGE
create-acot-preset [flags]OPTIONS
--npm-client npm client to use for dependent packages installations. (npm or yarn)
--no-color Force disabling of color
-h, --help Show help
-v, --version Output the version numberEXAMPLES
$ npx create-acot-preset foo
$ npx create-acot-preset @scoped
$ npx create-acot-preset @scoped/foo
$ npx create-acot-preset bar --npm-client yarn
```### npx
```bash
$ npx create-acot-preset foo
```### npm
```bash
$ npm init acot-preset foo
```_`npm init ` is available in npm 6+_
### Yarn
```bash
$ yarn create acot-preset foo
```_`yarn create ` is available in Yarn 0.25+_
## References
- [Creating a preset](https://github.com/acot-a11y/acot/blob/canary/docs/developer-guide/preset.md)
- [@acot/cli](https://github.com/acot-a11y/acot/tree/canary/packages/cli)## License
[MIT © wadackel](./LICENSE)