Skip to content

Commit

Permalink
Fixed an issue with ignored package being included in PR body incorre…
Browse files Browse the repository at this point in the history
…ctly (changesets#38)
  • Loading branch information
Andarist authored Jul 6, 2020
1 parent c240b08 commit cd904b9
Show file tree
Hide file tree
Showing 22 changed files with 2,240 additions and 1,648 deletions.
4 changes: 4 additions & 0 deletions __fixtures__/ignored-package/.changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"ignore": ["ignored-package-pkg-a"]
}
8 changes: 8 additions & 0 deletions __fixtures__/ignored-package/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"private": true,
"name": "ignored-package",
"version": "1.0.0",
"workspaces": [
"packages/*"
]
}
7 changes: 7 additions & 0 deletions __fixtures__/ignored-package/packages/pkg-a/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "ignored-package-pkg-a",
"version": "1.0.0",
"dependencies": {
"ignored-package-pkg-b": "1.0.0"
}
}
4 changes: 4 additions & 0 deletions __fixtures__/ignored-package/packages/pkg-b/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "ignored-package-pkg-b",
"version": "1.0.0"
}
3 changes: 3 additions & 0 deletions __fixtures__/simple-project/.changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json"
}
8 changes: 8 additions & 0 deletions __fixtures__/simple-project/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"private": true,
"name": "simple-project",
"version": "1.0.0",
"workspaces": [
"packages/*"
]
}
7 changes: 7 additions & 0 deletions __fixtures__/simple-project/packages/pkg-a/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "simple-project-pkg-a",
"version": "1.0.0",
"dependencies": {
"simple-project-pkg-b": "1.0.0"
}
}
4 changes: 4 additions & 0 deletions __fixtures__/simple-project/packages/pkg-b/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "simple-project-pkg-b",
"version": "1.0.0"
}
1,960 changes: 775 additions & 1,185 deletions dist/index.js

Large diffs are not rendered by default.

312 changes: 0 additions & 312 deletions index.ts

This file was deleted.

Loading

0 comments on commit cd904b9

Please sign in to comment.