Conditioner provides semantic conditions for string comparison and capture.
It isn't intended to replace the full power of regex, just simplify it for some common use cases.
It was developed for messaging and chat-bot scripts, to compare conversational streams against listeners and capture user inputs with easy to reference keys.
TBC
To build all apps and packages, run the following command:
cd my-turborepo
yarn run build
To develop all apps and packages, run the following command:
cd my-turborepo
yarn run dev
Turborepo can use a technique known as Remote Caching to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can create one, then enter the following commands:
cd my-turborepo
npx turbo login
This will authenticate the Turborepo CLI with your Vercel account.
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo:
npx turbo link
Learn more about the power of Turborepo:
- Migrate original implementation:
- Migrate Readme to docs
- Build with TSUP
- Publish to NPM / GH
- Add CJS version to builds
- Archive old repo: https://github.com/timkinnane/conditioner/blob/master/src/index.coffee
- Make test input component for docs
- Make CLI for generating patterns
- Implement changesets: https://github.com/changesets/changesets
- Add range feature: https://www.npmjs.com/package/to-regex-range
- Add dependency alerts
- Generate API docs with TSDoc