[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[TXT]CHANGELOG.md2025-10-29 15:57 2.6K 
[   ]LICENSE2025-10-29 15:57 11K 
[TXT]core.d.ts2025-10-29 15:57 1.3K 
[   ]core.js2025-10-29 15:57 3.0K 
[   ]core.js.map2025-10-29 15:57 4.9K 
[TXT]index.d.ts2025-10-29 15:57 72  
[   ]index.js2025-10-29 15:57 124  
[   ]index.js.map2025-10-29 15:57 260  
[   ]package.json2025-10-29 15:57 968  
[TXT]README.md2025-10-29 15:57 1.5K38d15e7 removed strapi.query from api controllers to repair migration on dev server? [كارل مبارك]
# find-yarn-workspace-root

[![Build Status](https://travis-ci.org/square/find-yarn-workspace-root.svg?branch=master)](https://travis-ci.org/square/find-yarn-workspace-root)

Algorithm for finding the root of a yarn workspace, extracted from yarnpkg.com

## Installation
```bash
yarn add find-yarn-workspace-root
```

## Usage
```js
const findWorkspaceRoot = require('find-yarn-workspace-root');

const workspaceRoot = findWorkspaceRoot(__dirname); // Absolute path or null
```

## Contributing

Contributions are welcome! Just clone this repository and install the dependencies:

```bash
git clone https://github.com/square/find-yarn-workspace-root.git
cd find-yarn-workspace-root
yarn
```

Note that you'll need `node` and `yarn` installed. Next, verify the tests all pass:

```bash
yarn test
```

Then create a branch for your bugfix/feature, make changes and update the tests, and submit a pull request. Please do not change the version in `package.json` when submitting a pull request. We determine the next version automatically based on the commits since the last release.

> *NOTE*: Commit messages follow the [Angular commit message guidelines](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits).

## Releases

Releases are handled by Travis CI once a build succeeds on `master`. To trigger a release, bump the version using `standard-version`:

```bash
$(yarn bin)/standard-version
```

That should update the CHANGELOG, bump the version in `package.json`, and create a git tag. Then, just `git push && git push --tags`.

---
Copyright 2017 Square, Inc.