https://github.com/lukethacoder/lsd-aus
@lsd-aus
https://github.com/lukethacoder/lsd-aus
config lerna lsd
Last synced: 3 months ago
JSON representation
@lsd-aus
- Host: GitHub
- URL: https://github.com/lukethacoder/lsd-aus
- Owner: lukethacoder
- License: mit
- Created: 2020-02-01T01:10:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T07:56:49.000Z (over 2 years ago)
- Last Synced: 2025-03-18T04:42:15.043Z (3 months ago)
- Topics: config, lerna, lsd
- Language: JavaScript
- Homepage: https://npmjs.com/org/lsd-aus
- Size: 947 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Usage
There is 4 npm packages in this repository:
- eslint-config [Documentation](./packages/eslint-config)
- prettier-config [Documentation](./packages/prettier-config)
- stylelint-config [Documentation](./packages/stylelint-config)
- tslint-config [Documentation](./packages/tslint-config)## Development
This is a [Lerna](https://github.com/lerna/lerna)-powered monorepo.
If you want to edit, for example, `tslint-config` and try it on your project:
```bash
git clone [email protected]:lukethacoder/lsd-aus
cd packages/tslint-config
yarn install
yarn link
```In your project do:
```bash
cd my-project
yarn link "@lsd-aus/tslint-config"
```## Publishing
You can either decide to bump all 4 packages by running:
```bash
yarn pub
```or if you just want to publish a single package (tslint-config for example):
```bash
yarn pub --scope="@lsd-aus/tslint-config"
```