Skip to content

Commit

Permalink
fix: drop Yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
homer0 committed Dec 27, 2022
1 parent 05683de commit 1023bd3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1004,9 +1004,9 @@ The way you can solve this is by adding a period at the end of the line, which w

### 🤘 Development

As this project is part of the `packages` monorepo, it requires Yarn, and some of the tooling, like ESLint and Husky, are installed on the root's `package.json`.
As this project is part of the `packages` monorepo, some of the tooling, like ESLint and Husky, are installed on the root's `package.json`.

#### Yarn tasks
#### NPM tasks

| Task | Description |
| ----------- | -------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"lint": "eslint .",
"test:unit": "jest -c ./.jestrc-unit.js",
"test:e2e": "jest -c ./.jestrc-e2e.js",
"test": "yarn test:unit && yarn test:e2e"
"test": "npm run test:unit && npm run test:e2e"
}
}
4 changes: 2 additions & 2 deletions tests/e2e/fixtures/random-01.fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* @external Jimple
* @see https://yarnpkg.com/en/package/jimple
* @see https://www.npmjs.com/package/jimple
*/

/**
Expand Down Expand Up @@ -47,7 +47,7 @@ const log = (name = 'batman', logger) => {};

/**
* @external Jimple
* @see https://yarnpkg.com/en/package/jimple
* @see https://www.npmjs.com/package/jimple
*/

/**
Expand Down

0 comments on commit 1023bd3

Please sign in to comment.