-
Notifications
You must be signed in to change notification settings - Fork 187
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
BREAKING CHANGE(all): [v16] Bump dependency package versions #926
Changes from all commits
6ba9bcf
031c21f
13dc50d
34b54a9
f95dd7b
a128bcb
69f205a
adf14e2
24d5c39
840d0ae
df8a16f
9a0b9ef
8c4384d
3926632
9f04ff6
549acae
6612ca0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lerna run --stream precommit && yarn generate-types && yarn lint-staged |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ package.json | |
package-lock.json | ||
packages/cli/src/generators/templates/ | ||
.yarn | ||
|
||
/.nx/workspace-data | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"npmClient": "yarn", | ||
"version": "independant", | ||
"useWorkspaces": true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is now the default value and was recommended to be removed via |
||
"command": { | ||
"run": { | ||
"npmClient": "yarn" | ||
} | ||
} | ||
}, | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,11 @@ class InitCommand extends BaseCommand { | |
const env = yeoman.createEnv(); | ||
env.registerStub(ProjectGenerator, 'zapier:integration'); | ||
|
||
env.run('zapier:integration', { path, template }, () => { | ||
this.log(); | ||
this.log(`A new integration has been created in directory "${path}".`); | ||
this.log(`Read all about it in "${join(path, 'README.md')}".`); | ||
}); | ||
await env.run('zapier:integration', { path, template }); | ||
|
||
this.log(); | ||
this.log(`A new integration has been created in directory "${path}".`); | ||
this.log(`Read all about it in "${join(path, 'README.md')}".`); | ||
Comment on lines
-18
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
} | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ describe('build (runs slowly)', function () { | |
smartPaths.filter((p) => p.endsWith('.ts')).length.should.equal(0); | ||
smartPaths.should.not.containEql('tsconfig.json'); | ||
|
||
smartPaths.length.should.be.within(200, 300); | ||
smartPaths.length.should.be.within(200, 301); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a new file: |
||
}); | ||
|
||
it('should list all the files', () => { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was added automatically via
lerna repair