Commit Graph

33 Commits

Author SHA1 Message Date
Zoltan Kochan
3bf6491161 chore(release): 5.17.2 2021-02-14 22:13:13 +02:00
Zoltan Kochan
a5e9d903cb fix: improve filter help 2021-02-08 00:17:22 +02:00
Zoltan Kochan
046a848314 chore(release): 5.14.0 2020-12-23 11:56:37 +02:00
Zoltan Kochan
1ec47db33e feat: new CLI option --test-pattern 2020-12-22 20:36:59 +02:00
Zoltan Kochan
18a191b513 ci: run tests on Node.js 10.16 2020-10-09 03:14:25 +03:00
Zoltan Kochan
a11aff2990 feat: excluding packages using --filter
Packages may be excluded from a command's scope, using "!" at the
beginning of the selector.

For instance, this will run tests in all projects except foo:

```
pnpm --filter=!foo test
```

And this one will run tests in all projects that are not under the
`lib` directory:

```
pnpm --filter=!./lib test
```

close #2804
PR #2898
2020-09-26 13:41:49 +03:00
Zoltan Kochan
80b8f5ef24 feat: support Node.js from v10.14 2020-09-23 01:09:33 +03:00
Zoltan Kochan
899dec0751 chore(release): 5.6.0 2020-09-17 12:20:07 +03:00
Zoltan Kochan
092f8dd83a feat: --workspace-root
`--workspace-root`, `-w`: a new option that allows to focus on
the root workspace project.

E.g., the following command runs the `lint` script of the root
`package.json` from anywhere in the monorepo:

```
pnpm -w lint
```

PR #2866
2020-09-17 11:07:05 +03:00
Zoltan Kochan
1c8a02e996 style: use eslint instead of tslint
PR #2796
close #2300
2020-08-24 02:01:25 +03:00
Zoltan Kochan
dc7fffbbd5 chore(release): 5.1.0 2020-06-01 20:12:12 +03:00
Zoltan Kochan
ffddf34a89 feat: --stream
Add new global option called `--stream`.

When used, the output from child processes is streamed to the console immediately, prefixed with the originating package directory. This allows output from different packages to be interleaved.

close #2147
close #1609
PR #2595
2020-05-31 13:46:32 +03:00
Zoltan Kochan
f9c54efe3d chore: add a funding link to every package.json 2020-05-01 14:53:31 +03:00
Zoltan Kochan
f5a2eb0703 chore(release): 4.13.0-0 2020-04-06 21:10:15 +03:00
Zoltan Kochan
f425651401 feat: --loglevel
close #2140
PR #2465
2020-04-06 14:34:54 +03:00
Zoltan Kochan
bf4dcc312d feat: support only Node>=10.13 2020-03-16 02:16:53 +02:00
Zoltan Kochan
27816890b4 fix: the order of patterns in "files" 2020-03-16 02:12:19 +02:00
Zoltan Kochan
c4cc7638c1 refactor: rename tsc scripts to compile 2020-03-12 20:57:33 +02:00
Zoltan Kochan
3ac627a709 chore(typescript): use project references
PR #2413
close #2410
2020-03-12 11:30:44 +02:00
Zoltan Kochan
c6901e185e chore: autogenerating some of the common meta 2020-03-11 23:24:02 +02:00
Zoltan Kochan
fa58ed8168 test: use source maps to remap coverage results 2020-03-08 03:14:23 +02:00
Zoltan Kochan
f461704e19 chore(deps): update rimraf and npm 2020-01-30 21:48:30 +02:00
Zoltan Kochan
fcf83108e9 chore(release): 4.7.1 2020-01-09 23:07:42 +02:00
Zoltan Kochan
dc30dc561a chore(release): 4.7.0-1 2020-01-07 22:49:21 +02:00
Zoltan Kochan
234c3a2ec7 feat: filtering by location including deps/dependents
PR #2254
close #1651

Filtering by directory: `pnpm --filter {dir}`
Including dependents: `pnpm --filter ...{dir}`
Including dependencies: `pnpm --filter {dir}...`
Filtering changed projects inside a directory: `pnpm --filter {dir}[origin/master]`
2020-01-06 22:25:54 +02:00
Zoltan Kochan
26f6123146 style: start the linting process only once during testing 2020-01-01 21:08:24 +02:00
Zoltan Kochan
bb5d41f337 style: add missing trailing commas and fix the linting rule 2020-01-01 19:18:25 +02:00
Zoltan Kochan
faea819709 chore(release): 4.6.0-0 2019-12-18 03:35:36 +02:00
Zoltan Kochan
5e692c817a feat: filtering by changed packages
close #2046
PR #2223
2019-12-18 02:47:04 +02:00
Zoltan Kochan
2a3fa5a473 chore(release): 4.4.0-2 2019-12-10 23:26:07 +02:00
Aankhen
758a3e4eef feat: add ^...' and ...^' filters
`package^...` is like `package...` but excludes `package` itself.
`...^package` is like `...package` but excludes `package` itself.

PR #2201
2019-12-10 22:51:34 +02:00
Zoltan Kochan
efab3552f4 chore(release): 4.4.0-0 2019-12-08 22:07:14 +02:00
Zoltan Kochan
70b5c50b62 refactor: create @pnpm/plugin-commands-outdated
ref #2154
2019-11-23 02:34:14 +02:00