-
Notifications
You must be signed in to change notification settings - Fork 86
Adds bolt add and bolt workspace add commands
#35
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
Changes from all commits
4696867
62d014d
1481f26
943df2b
ec212ad
0c2873c
e4da359
c1ac623
3f1ad5b
ceffd94
d411847
0391660
8988aa4
da357d8
2e3ad9c
2c4ab8b
ade08df
a19a9db
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| { | ||
| "private": true, | ||
| "version": "1.0.0", | ||
| "name": "fixture-project-nested-workspaces-with-root-dependencies-installed", | ||
| "description": "A project with only the root node_modules and symlinks already set up", | ||
| "description2": "Packages: foo, bar, baz, zee", | ||
| "description3": "bar has a single bin file, baz has two", | ||
| "description4": "foo and baz depend on bar, zee depends on baz", | ||
| "bolt": { | ||
| "workspaces": [ | ||
| "packages/*" | ||
| ] | ||
| }, | ||
| "dependencies": { | ||
| "external-dep": "^1.0.0", | ||
| "external-dep-with-bin": "^1.0.0", | ||
| "external-dep-with-two-bins": "^1.0.0" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "name": "bar", | ||
| "version": "1.0.0", | ||
| "dependencies": { | ||
| "external-dep": "^1.0.0" | ||
| }, | ||
| "bin": "./bar.js" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "name": "foo", | ||
| "version": "1.0.0", | ||
| "dependencies": { | ||
| "bar": "^1.0.0", | ||
| "external-dep": "^1.0.0", | ||
| "external-dep-with-bin": "^1.0.0" | ||
| }, | ||
| "bolt": { | ||
| "workspaces": ["packages/*"] | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "name": "baz", | ||
| "version": "1.0.0", | ||
| "dependencies": { | ||
| "bar": "^1.0.0" | ||
| }, | ||
| "bin": { | ||
| "baz-1": "./baz-bin-1.js", | ||
| "baz-2": "./baz-bin-2.js" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "name": "zee", | ||
| "version": "1.0.0", | ||
| "description": "We use the zee package to test all bin symlinking", | ||
| "description2": "bar and external-dep-with-bin both have one bin", | ||
| "description3": "baz and external-dep... both have two", | ||
| "dependencies": { | ||
| "bar": "^1.0.0", | ||
| "baz": "^1.0.0", | ||
| "external-dep-with-bin": "^1.0.0", | ||
| "external-dep-with-two-bins": "^1.0.0" | ||
| } | ||
| } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,6 @@ | |
| }, | ||
| "dependencies": { | ||
| "react": "^15.6.1", | ||
| "bar": "^1.0.0" | ||
| "@scoped/bar": "^1.0.0" | ||
| } | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,6 @@ | |
| "version": "1.0.0", | ||
| "dependencies": { | ||
| "react": "^15.6.1", | ||
| "bar": "^1.0.0" | ||
| "@scoped/bar": "^1.0.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ | |
| "workspaces": ["packages/*"] | ||
| }, | ||
| "dependencies": { | ||
| "react": "^15.6.1" | ||
| "react": "^15.6.1", | ||
| "left-pad": "^1.1.3" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "baz", | ||
| "version": "1.0.0", | ||
| "version": "1.0.1", | ||
| "dependencies": { | ||
| "react": "^15.6.1", | ||
| "bar": "^1.0.0" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| { | ||
| "name": "foo", | ||
| "name": "bar", | ||
| "version": "1.0.0" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| { | ||
| "name": "bar", | ||
| "name": "foo", | ||
| "version": "1.0.0" | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.
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.
Hmm... I'm going to double check all these fixures. I dont recall changing all these, so I'm thinking my tests may have modified them at some point.
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.
Yup, all good.