Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feathers v5 CLI #2425

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2626d9a
Initial app generating and testing working
daffl Jun 14, 2021
9e6c897
Rename folders and get generating working in CI
daffl Jul 12, 2021
9be3aa8
Initial service generator
daffl Jul 14, 2021
20ec730
User with Hygen fork and update templates
daffl Aug 4, 2021
0f579b2
Get first tests passing
daffl Aug 8, 2021
b3eb6bc
chore(core): Set version back to development
daffl Aug 8, 2021
62396a8
Merge with dove and keep all dependencies up to date
daffl Aug 8, 2021
f64d0d2
DImprove test setup and add TypeScript service generator
daffl Aug 8, 2021
30c7dd5
Merge branch 'dove' of github.com:feathersjs/feathers into hygen-cli
daffl Aug 10, 2021
75474c1
More generator template improvements
daffl Aug 18, 2021
0b85b3b
Merge with latest Dove
daffl Sep 19, 2021
cad0296
chore(cli): Name temp dirs like feathers_ts_koa (#2460)
FossPrime Oct 5, 2021
526fecd
Add initial schema template
daffl Oct 5, 2021
b214d34
[dove/cli] Address strictNullCheck error on app.test.ts (#2466)
FossPrime Oct 12, 2021
dc6df3e
Merge with latest dove
daffl Oct 12, 2021
17b7ef6
Merge branch 'hygen-cli' of github.com:feathersjs/feathers into hygen…
daffl Oct 12, 2021
393f665
Get all tests passing again
daffl Oct 12, 2021
36c5e99
Fix installation and add schema generation
daffl Oct 12, 2021
7409adf
Merge branch 'dove' of github.com:feathersjs/feathers into hygen-cli
daffl Oct 13, 2021
aea7b44
Update versions
daffl Oct 13, 2021
dd520b8
Skip CLI tests in Node 12
daffl Oct 13, 2021
5a57ab4
Support ambient types in dev environment by default (#2473)
FossPrime Oct 21, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Skip CLI tests in Node 12
  • Loading branch information
daffl committed Oct 13, 2021
commit dd520b8427e3f13046bbf81ba7743a050b1cbff6
4 changes: 3 additions & 1 deletion packages/cli/test/index.test.ts
Original file line number Diff line number Diff line change
@@ -32,7 +32,9 @@ function combinate<O extends Record<string | number, any[]>> (obj: O) {
return combos;
}

const combinations = process.env.CI ? combinate(matrix) : [defaultCombination];
const combinations = process.version > 'v16.0.0'
? process.env.CI ? combinate(matrix) : [defaultCombination]
: [];

describe('@feathersjs/cli', () => {
const oldCwd = process.cwd();