├── .babelrc ├── .flowconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── bin.js ├── code-of-conduct.md ├── example ├── package.json ├── packages │ ├── bar │ │ ├── bar.js │ │ └── package.json │ └── foo │ │ ├── package.json │ │ └── packages │ │ └── baz │ │ └── package.json └── yarn.lock ├── flow-typed └── npm │ ├── chalk_v1.x.x.js │ ├── jest_v20.x.x.js │ └── meow_v3.x.x.js ├── index.js ├── package.json ├── src ├── Config.js ├── GlobalOptions.js ├── Package.js ├── Project.js ├── Repository.js ├── __fixtures__ │ ├── dependent-workspaces-with-cycle │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── dependent-workspaces │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── dev-dependent-workspaces-only │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── independent-workspaces │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── invalid-project-root-dependency-on-ws │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── nested-workspaces-transitive-dependents │ │ ├── package.json │ │ └── packages │ │ │ ├── pkg-a │ │ │ └── package.json │ │ │ └── workspace-a │ │ │ ├── package.json │ │ │ └── packages │ │ │ ├── pkg-b │ │ │ └── package.json │ │ │ └── pkg-c │ │ │ └── package.json │ ├── nested-workspaces-with-muliple-binaries │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ ├── bin │ │ │ │ ├── anotherBar.js │ │ │ │ └── bar1.js │ │ │ └── package.json │ │ │ ├── foo │ │ │ ├── package.json │ │ │ └── packages │ │ │ │ └── baz │ │ │ │ ├── baz.js │ │ │ │ └── package.json │ │ │ └── zee │ │ │ ├── package.json │ │ │ └── zee.js │ ├── nested-workspaces-with-root-dependencies-installed │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── external-dep-two-bins-1 │ │ │ │ ├── external-dep-two-bins-2 │ │ │ │ └── external-dep-with-bin │ │ │ ├── external-dep-alt-version │ │ │ │ └── package.json │ │ │ ├── external-dep-with-bin │ │ │ │ ├── external-bin.js │ │ │ │ └── package.json │ │ │ ├── external-dep-with-two-bins │ │ │ │ ├── external-bin-1.js │ │ │ │ ├── external-bin-2.js │ │ │ │ └── package.json │ │ │ └── external-dep │ │ │ │ └── package.json │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ ├── bar.js │ │ │ └── package.json │ │ │ └── foo │ │ │ ├── package.json │ │ │ └── packages │ │ │ ├── baz │ │ │ ├── baz-bin-1.js │ │ │ ├── baz-bin-2.js │ │ │ └── package.json │ │ │ └── zee │ │ │ └── package.json │ ├── nested-workspaces-with-scoped-package-names │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ ├── node_modules │ │ │ │ └── react │ │ │ └── package.json │ │ │ └── foo │ │ │ ├── node_modules │ │ │ ├── @scope │ │ │ │ └── bar │ │ │ ├── @scoped │ │ │ │ └── bar │ │ │ └── react │ │ │ ├── package.json │ │ │ └── packages │ │ │ └── baz │ │ │ ├── node_modules │ │ │ ├── @scope │ │ │ │ └── bar │ │ │ ├── @scoped │ │ │ │ └── bar │ │ │ └── react │ │ │ └── package.json │ ├── nested-workspaces │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ ├── package.json │ │ │ └── packages │ │ │ └── baz │ │ │ └── package.json │ ├── no-package-json-workspace │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── .gitkeep │ │ │ └── foo │ │ │ └── package.json │ ├── package-with-external-deps-installed │ │ ├── node_modules │ │ │ ├── foo-dep │ │ │ │ └── package.json │ │ │ ├── global-dep │ │ │ │ └── package.json │ │ │ ├── project-only-dep-with-beta-tag │ │ │ │ └── package.json │ │ │ └── project-only-dep │ │ │ │ └── package.json │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ ├── node_modules │ │ │ │ └── global-dep │ │ │ └── package.json │ │ │ └── foo │ │ │ ├── node_modules │ │ │ ├── foo-dep │ │ │ └── global-dep │ │ │ └── package.json │ ├── package-with-four-spaces-json │ │ └── package.json │ ├── package-with-invalid-json │ │ └── package.json │ ├── package-with-uncertain-indentation-json │ │ └── package.json │ ├── project-with-bins │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ └── dep-with-bin │ │ │ └── dep-with-bin │ │ │ │ ├── bin.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ └── dep-with-bin │ │ │ └── dep-with-bin │ │ │ └── package.json │ ├── simple-package │ │ └── package.json │ ├── simple-project-with-excluded-package │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── simple-project-with-multiple-depTypes │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── simple-project-with-private-package │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── simple-project │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── simple-repo │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ └── workspace-with-bin │ │ ├── package.json │ │ └── packages │ │ ├── bar │ │ ├── bin.js │ │ └── package.json │ │ └── foo │ │ └── package.json ├── __tests__ │ ├── Config.test.js │ ├── Package.test.js │ ├── Project.test.js │ ├── Repository.test.js │ └── cli.test.js ├── cli.js ├── commands │ ├── __tests__ │ │ ├── add.test.js │ │ ├── autoclean.test.js │ │ ├── bin.test.js │ │ ├── build.test.js │ │ ├── check.test.js │ │ ├── create.test.js │ │ ├── doc.test.js │ │ ├── exec.test.js │ │ ├── format.test.js │ │ ├── generate.test.js │ │ ├── help.test.js │ │ ├── import.test.js │ │ ├── info.test.js │ │ ├── init.test.js │ │ ├── install.test.js │ │ ├── link.test.js │ │ ├── lint.test.js │ │ ├── list.test.js │ │ ├── login.test.js │ │ ├── logout.test.js │ │ ├── normalize.test.js │ │ ├── outdated.test.js │ │ ├── pack.test.js │ │ ├── publish.test.js │ │ ├── publishLock.test.js │ │ ├── publishUnlock.test.js │ │ ├── remove.test.js │ │ ├── run.test.js │ │ ├── test.test.js │ │ ├── unlink.test.js │ │ ├── upgrade.test.js │ │ ├── upgradeInteractive.test.js │ │ ├── version.test.js │ │ ├── versions.test.js │ │ └── why.test.js │ ├── add.js │ ├── autoclean.js │ ├── bin.js │ ├── build.js │ ├── cache │ │ ├── __tests__ │ │ │ ├── clean.test.js │ │ │ ├── dir.test.js │ │ │ └── list.test.js │ │ ├── clean.js │ │ ├── dir.js │ │ ├── index.js │ │ └── list.js │ ├── check.js │ ├── config │ │ ├── __tests__ │ │ │ ├── current.test.js │ │ │ ├── delete.test.js │ │ │ ├── get.test.js │ │ │ ├── list.test.js │ │ │ └── set.test.js │ │ ├── current.js │ │ ├── delete.js │ │ ├── get.js │ │ ├── index.js │ │ ├── list.js │ │ └── set.js │ ├── create.js │ ├── doc.js │ ├── exec.js │ ├── format.js │ ├── generate.js │ ├── global │ │ ├── __tests__ │ │ │ ├── add.test.js │ │ │ ├── bin.test.js │ │ │ ├── list.test.js │ │ │ ├── remove.test.js │ │ │ └── upgrade.test.js │ │ ├── add.js │ │ ├── bin.js │ │ ├── index.js │ │ ├── list.js │ │ ├── remove.js │ │ └── upgrade.js │ ├── help.js │ ├── import.js │ ├── index.js │ ├── info.js │ ├── init.js │ ├── install.js │ ├── licenses │ │ ├── __tests__ │ │ │ ├── generateDisclaimer.test.js │ │ │ └── list.test.js │ │ ├── generateDisclaimer.js │ │ ├── index.js │ │ └── list.js │ ├── link.js │ ├── lint.js │ ├── list.js │ ├── login.js │ ├── logout.js │ ├── normalize.js │ ├── outdated.js │ ├── owner │ │ ├── __tests__ │ │ │ ├── add.test.js │ │ │ ├── list.test.js │ │ │ └── remove.test.js │ │ ├── add.js │ │ ├── index.js │ │ ├── list.js │ │ └── remove.js │ ├── pack.js │ ├── project │ │ ├── __tests__ │ │ │ ├── add.test.js │ │ │ ├── exec.test.js │ │ │ ├── remove.test.js │ │ │ ├── run.test.js │ │ │ └── upgrade.test.js │ │ ├── add.js │ │ ├── exec.js │ │ ├── index.js │ │ ├── remove.js │ │ ├── run.js │ │ └── upgrade.js │ ├── publish.js │ ├── publishLock.js │ ├── publishUnlock.js │ ├── remove.js │ ├── run.js │ ├── tag │ │ ├── __tests__ │ │ │ ├── add.test.js │ │ │ ├── list.test.js │ │ │ └── remove.test.js │ │ ├── add.js │ │ ├── index.js │ │ ├── list.js │ │ └── remove.js │ ├── team │ │ ├── __tests__ │ │ │ ├── add.test.js │ │ │ ├── create.test.js │ │ │ ├── destroy.test.js │ │ │ ├── list.test.js │ │ │ └── remove.test.js │ │ ├── add.js │ │ ├── create.js │ │ ├── destroy.js │ │ ├── index.js │ │ ├── list.js │ │ └── remove.js │ ├── test.js │ ├── unlink.js │ ├── upgrade.js │ ├── upgradeInteractive.js │ ├── version.js │ ├── versions.js │ ├── why.js │ ├── workspace │ │ ├── __tests__ │ │ │ ├── add.test.js │ │ │ ├── exec.test.js │ │ │ ├── link.test.js │ │ │ ├── remove.test.js │ │ │ ├── run.test.js │ │ │ ├── unlink.test.js │ │ │ └── upgrade.test.js │ │ ├── add.js │ │ ├── exec.js │ │ ├── index.js │ │ ├── link.js │ │ ├── remove.js │ │ ├── run.js │ │ ├── unlink.js │ │ └── upgrade.js │ └── workspaces │ │ ├── __tests__ │ │ ├── add.test.js │ │ ├── exec.test.js │ │ ├── remove.test.js │ │ ├── run.test.js │ │ └── upgrade.test.js │ │ ├── add.js │ │ ├── exec.js │ │ ├── index.js │ │ ├── remove.js │ │ ├── run.js │ │ └── upgrade.js ├── constants.js ├── functions │ ├── __fixtures__ │ │ └── lots-of-internally-linked-deps │ │ │ ├── package.json │ │ │ └── packages │ │ │ ├── caret-dep │ │ │ └── package.json │ │ │ ├── has-all-deps-with-peers │ │ │ └── package.json │ │ │ ├── has-all-deps │ │ │ └── package.json │ │ │ ├── pinned-dep │ │ │ └── package.json │ │ │ └── tilde-dep │ │ │ └── package.json │ ├── __tests__ │ │ ├── getDependentsGraph.test.js │ │ ├── getProject.test.js │ │ ├── runWorkspaceTasks.test.js │ │ └── updatePackageVersions.test.js │ ├── getDependencyGraph.js │ ├── getDependentsGraph.js │ ├── getProject.js │ ├── getWorkspaces.js │ ├── index.js │ ├── publishPackages.js │ ├── runWorkspaceTasks.js │ ├── updatePackageVersions.js │ └── updateWorkspaceDependencies.js ├── generators │ ├── __tests__ │ │ └── license.test.js │ └── license.js ├── index.js ├── types.js └── utils │ ├── __fixtures__ │ ├── project-with-missing-version-field │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ ├── simple-project-with-bolt-version-check │ │ ├── package.json │ │ └── packages │ │ │ ├── bar │ │ │ └── package.json │ │ │ └── foo │ │ │ └── package.json │ └── symlinks │ │ ├── executable.sh │ │ ├── file.txt │ │ ├── file2.txt │ │ ├── shim.cmd │ │ └── shim_target.js │ ├── __mocks__ │ ├── npm.js │ └── spawn.js │ ├── __tests__ │ ├── addDependenciesToPackages.test.js │ ├── changes.test.js │ ├── fs.test.js │ ├── git.test.js │ ├── jsonModifier.test.js │ ├── locks.test.js │ ├── logger.test.js │ ├── npm.test.js │ ├── options.test.js │ ├── processes.test.js │ ├── promises.test.js │ ├── prompts.test.js │ ├── publish.test.js │ ├── symlinkPackageDependencies.test.js │ ├── symlinkPackagesBinariesToProject.test.js │ ├── upgradeDependenciesInPackages.test.js │ ├── validateProject.test.js │ └── yarn.test.js │ ├── addDependenciesToPackages.js │ ├── changes.js │ ├── cleanUp.js │ ├── env.js │ ├── errors.js │ ├── execCommand.js │ ├── fs.js │ ├── git.js │ ├── globs.js │ ├── jsonModifier.js │ ├── locks.js │ ├── logger.js │ ├── messages.js │ ├── npm.js │ ├── options.js │ ├── processes.js │ ├── promiseWrapper.js │ ├── promises.js │ ├── prompts.js │ ├── publish.js │ ├── removeDependenciesFromPackages.js │ ├── symlinkPackageDependencies.js │ ├── symlinkPackagesBinariesToProject.js │ ├── upgradeDependenciesInPackages.js │ ├── validateProject.js │ └── yarn.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/README.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/bin.js -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/example/package.json -------------------------------------------------------------------------------- /example/packages/bar/bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/example/packages/bar/package.json -------------------------------------------------------------------------------- /example/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/example/packages/foo/package.json -------------------------------------------------------------------------------- /example/packages/foo/packages/baz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/example/packages/foo/packages/baz/package.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /flow-typed/npm/chalk_v1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/flow-typed/npm/chalk_v1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v20.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/flow-typed/npm/jest_v20.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/meow_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/flow-typed/npm/meow_v3.x.x.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/package.json -------------------------------------------------------------------------------- /src/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/Config.js -------------------------------------------------------------------------------- /src/GlobalOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/GlobalOptions.js -------------------------------------------------------------------------------- /src/Package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/Package.js -------------------------------------------------------------------------------- /src/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/Project.js -------------------------------------------------------------------------------- /src/Repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/Repository.js -------------------------------------------------------------------------------- /src/__fixtures__/dependent-workspaces-with-cycle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dependent-workspaces-with-cycle/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dependent-workspaces-with-cycle/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dependent-workspaces-with-cycle/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dependent-workspaces-with-cycle/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dependent-workspaces-with-cycle/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dependent-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dependent-workspaces/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dependent-workspaces/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dependent-workspaces/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dependent-workspaces/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dependent-workspaces/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dev-dependent-workspaces-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dev-dependent-workspaces-only/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dev-dependent-workspaces-only/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dev-dependent-workspaces-only/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/dev-dependent-workspaces-only/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/dev-dependent-workspaces-only/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/independent-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/independent-workspaces/package.json -------------------------------------------------------------------------------- /src/__fixtures__/independent-workspaces/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/independent-workspaces/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/independent-workspaces/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/independent-workspaces/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/invalid-project-root-dependency-on-ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/invalid-project-root-dependency-on-ws/package.json -------------------------------------------------------------------------------- /src/__fixtures__/invalid-project-root-dependency-on-ws/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/invalid-project-root-dependency-on-ws/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/invalid-project-root-dependency-on-ws/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/invalid-project-root-dependency-on-ws/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-transitive-dependents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-transitive-dependents/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-transitive-dependents/packages/pkg-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-transitive-dependents/packages/pkg-a/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-transitive-dependents/packages/workspace-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-transitive-dependents/packages/workspace-a/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-transitive-dependents/packages/workspace-a/packages/pkg-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-transitive-dependents/packages/workspace-a/packages/pkg-b/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-transitive-dependents/packages/workspace-a/packages/pkg-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-transitive-dependents/packages/workspace-a/packages/pkg-c/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-muliple-binaries/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/bar/bin/anotherBar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/bar/bin/bar1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/foo/packages/baz/baz.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/foo/packages/baz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/foo/packages/baz/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/zee/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/zee/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-muliple-binaries/packages/zee/zee.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/.bin/external-dep-two-bins-1: -------------------------------------------------------------------------------- 1 | ../external-dep-with-two-bins/external-bin-1.js -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/.bin/external-dep-two-bins-2: -------------------------------------------------------------------------------- 1 | ../external-dep-with-two-bins/external-bin-2.js -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/.bin/external-dep-with-bin: -------------------------------------------------------------------------------- 1 | ../external-dep-with-bin/external-bin.js -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-alt-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-alt-version/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-bin/external-bin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-bin/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-two-bins/external-bin-1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-two-bins/external-bin-2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-two-bins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep-with-two-bins/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/node_modules/external-dep/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/bar/bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/packages/baz/baz-bin-1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/packages/baz/baz-bin-2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/packages/baz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/packages/baz/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/packages/zee/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-root-dependencies-installed/packages/foo/packages/zee/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-scoped-package-names/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/bar/node_modules/react: -------------------------------------------------------------------------------- 1 | ../../../node_modules/react -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/node_modules/@scope/bar: -------------------------------------------------------------------------------- 1 | ../../../bar -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/node_modules/@scoped/bar: -------------------------------------------------------------------------------- 1 | ../../../bar -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/node_modules/react: -------------------------------------------------------------------------------- 1 | ../../../node_modules/react -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/packages/baz/node_modules/@scope/bar: -------------------------------------------------------------------------------- 1 | ../../../../../bar -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/packages/baz/node_modules/@scoped/bar: -------------------------------------------------------------------------------- 1 | ../../../../../bar -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/packages/baz/node_modules/react: -------------------------------------------------------------------------------- 1 | ../../../../../node_modules/react -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/packages/baz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces-with-scoped-package-names/packages/foo/packages/baz/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/nested-workspaces/packages/foo/packages/baz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/nested-workspaces/packages/foo/packages/baz/package.json -------------------------------------------------------------------------------- /src/__fixtures__/no-package-json-workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/no-package-json-workspace/package.json -------------------------------------------------------------------------------- /src/__fixtures__/no-package-json-workspace/packages/bar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__fixtures__/no-package-json-workspace/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/no-package-json-workspace/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/node_modules/foo-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/node_modules/foo-dep/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/node_modules/global-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/node_modules/global-dep/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/node_modules/project-only-dep-with-beta-tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/node_modules/project-only-dep-with-beta-tag/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/node_modules/project-only-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/node_modules/project-only-dep/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/packages/bar/node_modules/global-dep: -------------------------------------------------------------------------------- 1 | ../../../node_modules/global-dep -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/packages/foo/node_modules/foo-dep: -------------------------------------------------------------------------------- 1 | ../../../node_modules/foo-dep -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/packages/foo/node_modules/global-dep: -------------------------------------------------------------------------------- 1 | ../../../node_modules/global-dep -------------------------------------------------------------------------------- /src/__fixtures__/package-with-external-deps-installed/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/package-with-external-deps-installed/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/package-with-four-spaces-json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "four-spaces" 3 | } 4 | -------------------------------------------------------------------------------- /src/__fixtures__/package-with-invalid-json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "invalid 3 | } 4 | -------------------------------------------------------------------------------- /src/__fixtures__/package-with-uncertain-indentation-json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uncertain-indentation" 3 | } 4 | -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/node_modules/.bin/dep-with-bin: -------------------------------------------------------------------------------- 1 | ../dep-with-bin/bin.js -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/node_modules/dep-with-bin/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | console.log('Hello from dep-with-bin'); 4 | -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/node_modules/dep-with-bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/project-with-bins/node_modules/dep-with-bin/package.json -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/project-with-bins/package.json -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/project-with-bins/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/packages/foo/node_modules/.bin/dep-with-bin: -------------------------------------------------------------------------------- 1 | ../../../../node_modules/.bin/dep-with-bin -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/packages/foo/node_modules/dep-with-bin: -------------------------------------------------------------------------------- 1 | ../../../node_modules/dep-with-bin -------------------------------------------------------------------------------- /src/__fixtures__/project-with-bins/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/project-with-bins/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-package/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fixture-basic" 3 | } 4 | -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-excluded-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-excluded-package/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-excluded-package/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-excluded-package/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-excluded-package/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-excluded-package/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-multiple-depTypes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-multiple-depTypes/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-multiple-depTypes/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-multiple-depTypes/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-multiple-depTypes/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-multiple-depTypes/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-private-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-private-package/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-private-package/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-private-package/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project-with-private-package/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project-with-private-package/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-project/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-project/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-repo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-repo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-repo/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-repo/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/simple-repo/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/simple-repo/packages/foo/package.json -------------------------------------------------------------------------------- /src/__fixtures__/workspace-with-bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/workspace-with-bin/package.json -------------------------------------------------------------------------------- /src/__fixtures__/workspace-with-bin/packages/bar/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | -------------------------------------------------------------------------------- /src/__fixtures__/workspace-with-bin/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/workspace-with-bin/packages/bar/package.json -------------------------------------------------------------------------------- /src/__fixtures__/workspace-with-bin/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__fixtures__/workspace-with-bin/packages/foo/package.json -------------------------------------------------------------------------------- /src/__tests__/Config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__tests__/Config.test.js -------------------------------------------------------------------------------- /src/__tests__/Package.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__tests__/Package.test.js -------------------------------------------------------------------------------- /src/__tests__/Project.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__tests__/Project.test.js -------------------------------------------------------------------------------- /src/__tests__/Repository.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__tests__/Repository.test.js -------------------------------------------------------------------------------- /src/__tests__/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/__tests__/cli.test.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/commands/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/autoclean.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/autoclean.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/bin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/bin.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/build.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/build.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/check.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/check.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/create.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/doc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/doc.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/exec.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/format.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/format.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/generate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/generate.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/help.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/help.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/import.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/import.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/info.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/info.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/init.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/install.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/install.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/link.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/link.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/lint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/lint.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/login.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/login.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/logout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/logout.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/normalize.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/normalize.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/outdated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/outdated.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/pack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/pack.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/publish.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/publish.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/publishLock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/publishLock.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/publishUnlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/publishUnlock.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/run.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/run.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/test.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/test.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/unlink.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/unlink.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/upgrade.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/upgradeInteractive.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/upgradeInteractive.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/version.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/version.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/versions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/versions.test.js -------------------------------------------------------------------------------- /src/commands/__tests__/why.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/__tests__/why.test.js -------------------------------------------------------------------------------- /src/commands/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/add.js -------------------------------------------------------------------------------- /src/commands/autoclean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/autoclean.js -------------------------------------------------------------------------------- /src/commands/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/bin.js -------------------------------------------------------------------------------- /src/commands/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/build.js -------------------------------------------------------------------------------- /src/commands/cache/__tests__/clean.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/__tests__/clean.test.js -------------------------------------------------------------------------------- /src/commands/cache/__tests__/dir.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/__tests__/dir.test.js -------------------------------------------------------------------------------- /src/commands/cache/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/cache/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/clean.js -------------------------------------------------------------------------------- /src/commands/cache/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/dir.js -------------------------------------------------------------------------------- /src/commands/cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/index.js -------------------------------------------------------------------------------- /src/commands/cache/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/cache/list.js -------------------------------------------------------------------------------- /src/commands/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/check.js -------------------------------------------------------------------------------- /src/commands/config/__tests__/current.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/__tests__/current.test.js -------------------------------------------------------------------------------- /src/commands/config/__tests__/delete.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/__tests__/delete.test.js -------------------------------------------------------------------------------- /src/commands/config/__tests__/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/__tests__/get.test.js -------------------------------------------------------------------------------- /src/commands/config/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/config/__tests__/set.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/__tests__/set.test.js -------------------------------------------------------------------------------- /src/commands/config/current.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/current.js -------------------------------------------------------------------------------- /src/commands/config/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/delete.js -------------------------------------------------------------------------------- /src/commands/config/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/get.js -------------------------------------------------------------------------------- /src/commands/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/index.js -------------------------------------------------------------------------------- /src/commands/config/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/list.js -------------------------------------------------------------------------------- /src/commands/config/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/config/set.js -------------------------------------------------------------------------------- /src/commands/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/create.js -------------------------------------------------------------------------------- /src/commands/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/doc.js -------------------------------------------------------------------------------- /src/commands/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/exec.js -------------------------------------------------------------------------------- /src/commands/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/format.js -------------------------------------------------------------------------------- /src/commands/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/generate.js -------------------------------------------------------------------------------- /src/commands/global/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/global/__tests__/bin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/__tests__/bin.test.js -------------------------------------------------------------------------------- /src/commands/global/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/global/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/global/__tests__/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/__tests__/upgrade.test.js -------------------------------------------------------------------------------- /src/commands/global/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/add.js -------------------------------------------------------------------------------- /src/commands/global/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/bin.js -------------------------------------------------------------------------------- /src/commands/global/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/index.js -------------------------------------------------------------------------------- /src/commands/global/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/list.js -------------------------------------------------------------------------------- /src/commands/global/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/remove.js -------------------------------------------------------------------------------- /src/commands/global/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/global/upgrade.js -------------------------------------------------------------------------------- /src/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/help.js -------------------------------------------------------------------------------- /src/commands/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/import.js -------------------------------------------------------------------------------- /src/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/index.js -------------------------------------------------------------------------------- /src/commands/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/info.js -------------------------------------------------------------------------------- /src/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/init.js -------------------------------------------------------------------------------- /src/commands/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/install.js -------------------------------------------------------------------------------- /src/commands/licenses/__tests__/generateDisclaimer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/licenses/__tests__/generateDisclaimer.test.js -------------------------------------------------------------------------------- /src/commands/licenses/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/licenses/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/licenses/generateDisclaimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/licenses/generateDisclaimer.js -------------------------------------------------------------------------------- /src/commands/licenses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/licenses/index.js -------------------------------------------------------------------------------- /src/commands/licenses/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/licenses/list.js -------------------------------------------------------------------------------- /src/commands/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/link.js -------------------------------------------------------------------------------- /src/commands/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/lint.js -------------------------------------------------------------------------------- /src/commands/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/list.js -------------------------------------------------------------------------------- /src/commands/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/login.js -------------------------------------------------------------------------------- /src/commands/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/logout.js -------------------------------------------------------------------------------- /src/commands/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/normalize.js -------------------------------------------------------------------------------- /src/commands/outdated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/outdated.js -------------------------------------------------------------------------------- /src/commands/owner/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/owner/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/owner/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/owner/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/add.js -------------------------------------------------------------------------------- /src/commands/owner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/index.js -------------------------------------------------------------------------------- /src/commands/owner/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/list.js -------------------------------------------------------------------------------- /src/commands/owner/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/owner/remove.js -------------------------------------------------------------------------------- /src/commands/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/pack.js -------------------------------------------------------------------------------- /src/commands/project/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/project/__tests__/exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/__tests__/exec.test.js -------------------------------------------------------------------------------- /src/commands/project/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/project/__tests__/run.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/__tests__/run.test.js -------------------------------------------------------------------------------- /src/commands/project/__tests__/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/__tests__/upgrade.test.js -------------------------------------------------------------------------------- /src/commands/project/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/add.js -------------------------------------------------------------------------------- /src/commands/project/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/exec.js -------------------------------------------------------------------------------- /src/commands/project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/index.js -------------------------------------------------------------------------------- /src/commands/project/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/remove.js -------------------------------------------------------------------------------- /src/commands/project/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/run.js -------------------------------------------------------------------------------- /src/commands/project/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/project/upgrade.js -------------------------------------------------------------------------------- /src/commands/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/publish.js -------------------------------------------------------------------------------- /src/commands/publishLock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/publishLock.js -------------------------------------------------------------------------------- /src/commands/publishUnlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/publishUnlock.js -------------------------------------------------------------------------------- /src/commands/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/remove.js -------------------------------------------------------------------------------- /src/commands/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/run.js -------------------------------------------------------------------------------- /src/commands/tag/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/tag/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/tag/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/tag/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/add.js -------------------------------------------------------------------------------- /src/commands/tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/index.js -------------------------------------------------------------------------------- /src/commands/tag/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/list.js -------------------------------------------------------------------------------- /src/commands/tag/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/tag/remove.js -------------------------------------------------------------------------------- /src/commands/team/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/team/__tests__/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/__tests__/create.test.js -------------------------------------------------------------------------------- /src/commands/team/__tests__/destroy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/__tests__/destroy.test.js -------------------------------------------------------------------------------- /src/commands/team/__tests__/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/__tests__/list.test.js -------------------------------------------------------------------------------- /src/commands/team/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/team/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/add.js -------------------------------------------------------------------------------- /src/commands/team/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/create.js -------------------------------------------------------------------------------- /src/commands/team/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/destroy.js -------------------------------------------------------------------------------- /src/commands/team/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/index.js -------------------------------------------------------------------------------- /src/commands/team/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/list.js -------------------------------------------------------------------------------- /src/commands/team/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/team/remove.js -------------------------------------------------------------------------------- /src/commands/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/test.js -------------------------------------------------------------------------------- /src/commands/unlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/unlink.js -------------------------------------------------------------------------------- /src/commands/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/upgrade.js -------------------------------------------------------------------------------- /src/commands/upgradeInteractive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/upgradeInteractive.js -------------------------------------------------------------------------------- /src/commands/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/version.js -------------------------------------------------------------------------------- /src/commands/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/versions.js -------------------------------------------------------------------------------- /src/commands/why.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/why.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/exec.test.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/link.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/link.test.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/run.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/run.test.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/unlink.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/unlink.test.js -------------------------------------------------------------------------------- /src/commands/workspace/__tests__/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/__tests__/upgrade.test.js -------------------------------------------------------------------------------- /src/commands/workspace/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/add.js -------------------------------------------------------------------------------- /src/commands/workspace/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/exec.js -------------------------------------------------------------------------------- /src/commands/workspace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/index.js -------------------------------------------------------------------------------- /src/commands/workspace/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/link.js -------------------------------------------------------------------------------- /src/commands/workspace/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/remove.js -------------------------------------------------------------------------------- /src/commands/workspace/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/run.js -------------------------------------------------------------------------------- /src/commands/workspace/unlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/unlink.js -------------------------------------------------------------------------------- /src/commands/workspace/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspace/upgrade.js -------------------------------------------------------------------------------- /src/commands/workspaces/__tests__/add.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/__tests__/add.test.js -------------------------------------------------------------------------------- /src/commands/workspaces/__tests__/exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/__tests__/exec.test.js -------------------------------------------------------------------------------- /src/commands/workspaces/__tests__/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/__tests__/remove.test.js -------------------------------------------------------------------------------- /src/commands/workspaces/__tests__/run.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/__tests__/run.test.js -------------------------------------------------------------------------------- /src/commands/workspaces/__tests__/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/__tests__/upgrade.test.js -------------------------------------------------------------------------------- /src/commands/workspaces/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/add.js -------------------------------------------------------------------------------- /src/commands/workspaces/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/exec.js -------------------------------------------------------------------------------- /src/commands/workspaces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/index.js -------------------------------------------------------------------------------- /src/commands/workspaces/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/remove.js -------------------------------------------------------------------------------- /src/commands/workspaces/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/run.js -------------------------------------------------------------------------------- /src/commands/workspaces/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/commands/workspaces/upgrade.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/functions/__fixtures__/lots-of-internally-linked-deps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__fixtures__/lots-of-internally-linked-deps/package.json -------------------------------------------------------------------------------- /src/functions/__fixtures__/lots-of-internally-linked-deps/packages/caret-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__fixtures__/lots-of-internally-linked-deps/packages/caret-dep/package.json -------------------------------------------------------------------------------- /src/functions/__fixtures__/lots-of-internally-linked-deps/packages/has-all-deps-with-peers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__fixtures__/lots-of-internally-linked-deps/packages/has-all-deps-with-peers/package.json -------------------------------------------------------------------------------- /src/functions/__fixtures__/lots-of-internally-linked-deps/packages/has-all-deps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__fixtures__/lots-of-internally-linked-deps/packages/has-all-deps/package.json -------------------------------------------------------------------------------- /src/functions/__fixtures__/lots-of-internally-linked-deps/packages/pinned-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__fixtures__/lots-of-internally-linked-deps/packages/pinned-dep/package.json -------------------------------------------------------------------------------- /src/functions/__fixtures__/lots-of-internally-linked-deps/packages/tilde-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__fixtures__/lots-of-internally-linked-deps/packages/tilde-dep/package.json -------------------------------------------------------------------------------- /src/functions/__tests__/getDependentsGraph.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__tests__/getDependentsGraph.test.js -------------------------------------------------------------------------------- /src/functions/__tests__/getProject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__tests__/getProject.test.js -------------------------------------------------------------------------------- /src/functions/__tests__/runWorkspaceTasks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__tests__/runWorkspaceTasks.test.js -------------------------------------------------------------------------------- /src/functions/__tests__/updatePackageVersions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/__tests__/updatePackageVersions.test.js -------------------------------------------------------------------------------- /src/functions/getDependencyGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/getDependencyGraph.js -------------------------------------------------------------------------------- /src/functions/getDependentsGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/getDependentsGraph.js -------------------------------------------------------------------------------- /src/functions/getProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/getProject.js -------------------------------------------------------------------------------- /src/functions/getWorkspaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/getWorkspaces.js -------------------------------------------------------------------------------- /src/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/index.js -------------------------------------------------------------------------------- /src/functions/publishPackages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/publishPackages.js -------------------------------------------------------------------------------- /src/functions/runWorkspaceTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/runWorkspaceTasks.js -------------------------------------------------------------------------------- /src/functions/updatePackageVersions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/updatePackageVersions.js -------------------------------------------------------------------------------- /src/functions/updateWorkspaceDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/functions/updateWorkspaceDependencies.js -------------------------------------------------------------------------------- /src/generators/__tests__/license.test.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | test('generate license'); 3 | -------------------------------------------------------------------------------- /src/generators/license.js: -------------------------------------------------------------------------------- 1 | // TODO 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/index.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/types.js -------------------------------------------------------------------------------- /src/utils/__fixtures__/project-with-missing-version-field/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/project-with-missing-version-field/package.json -------------------------------------------------------------------------------- /src/utils/__fixtures__/project-with-missing-version-field/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/project-with-missing-version-field/packages/bar/package.json -------------------------------------------------------------------------------- /src/utils/__fixtures__/project-with-missing-version-field/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/project-with-missing-version-field/packages/foo/package.json -------------------------------------------------------------------------------- /src/utils/__fixtures__/simple-project-with-bolt-version-check/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/simple-project-with-bolt-version-check/package.json -------------------------------------------------------------------------------- /src/utils/__fixtures__/simple-project-with-bolt-version-check/packages/bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/simple-project-with-bolt-version-check/packages/bar/package.json -------------------------------------------------------------------------------- /src/utils/__fixtures__/simple-project-with-bolt-version-check/packages/foo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/simple-project-with-bolt-version-check/packages/foo/package.json -------------------------------------------------------------------------------- /src/utils/__fixtures__/symlinks/executable.sh: -------------------------------------------------------------------------------- 1 | echo "hello" 2 | -------------------------------------------------------------------------------- /src/utils/__fixtures__/symlinks/file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /src/utils/__fixtures__/symlinks/file2.txt: -------------------------------------------------------------------------------- 1 | bye 2 | -------------------------------------------------------------------------------- /src/utils/__fixtures__/symlinks/shim.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__fixtures__/symlinks/shim.cmd -------------------------------------------------------------------------------- /src/utils/__fixtures__/symlinks/shim_target.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/__mocks__/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__mocks__/npm.js -------------------------------------------------------------------------------- /src/utils/__mocks__/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__mocks__/spawn.js -------------------------------------------------------------------------------- /src/utils/__tests__/addDependenciesToPackages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/addDependenciesToPackages.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/changes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/changes.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/fs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/fs.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/git.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/git.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/jsonModifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/jsonModifier.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/locks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/locks.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/logger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/logger.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/npm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/npm.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/options.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/processes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/processes.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/promises.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/promises.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/prompts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/prompts.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/publish.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/publish.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/symlinkPackageDependencies.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/symlinkPackageDependencies.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/symlinkPackagesBinariesToProject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/symlinkPackagesBinariesToProject.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/upgradeDependenciesInPackages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/upgradeDependenciesInPackages.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/validateProject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/validateProject.test.js -------------------------------------------------------------------------------- /src/utils/__tests__/yarn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/__tests__/yarn.test.js -------------------------------------------------------------------------------- /src/utils/addDependenciesToPackages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/addDependenciesToPackages.js -------------------------------------------------------------------------------- /src/utils/changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/changes.js -------------------------------------------------------------------------------- /src/utils/cleanUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/cleanUp.js -------------------------------------------------------------------------------- /src/utils/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/env.js -------------------------------------------------------------------------------- /src/utils/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/errors.js -------------------------------------------------------------------------------- /src/utils/execCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/execCommand.js -------------------------------------------------------------------------------- /src/utils/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/fs.js -------------------------------------------------------------------------------- /src/utils/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/git.js -------------------------------------------------------------------------------- /src/utils/globs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/globs.js -------------------------------------------------------------------------------- /src/utils/jsonModifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/jsonModifier.js -------------------------------------------------------------------------------- /src/utils/locks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/locks.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /src/utils/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/messages.js -------------------------------------------------------------------------------- /src/utils/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/npm.js -------------------------------------------------------------------------------- /src/utils/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/options.js -------------------------------------------------------------------------------- /src/utils/processes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/processes.js -------------------------------------------------------------------------------- /src/utils/promiseWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/promiseWrapper.js -------------------------------------------------------------------------------- /src/utils/promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/promises.js -------------------------------------------------------------------------------- /src/utils/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/prompts.js -------------------------------------------------------------------------------- /src/utils/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/publish.js -------------------------------------------------------------------------------- /src/utils/removeDependenciesFromPackages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/removeDependenciesFromPackages.js -------------------------------------------------------------------------------- /src/utils/symlinkPackageDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/symlinkPackageDependencies.js -------------------------------------------------------------------------------- /src/utils/symlinkPackagesBinariesToProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/symlinkPackagesBinariesToProject.js -------------------------------------------------------------------------------- /src/utils/upgradeDependenciesInPackages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/upgradeDependenciesInPackages.js -------------------------------------------------------------------------------- /src/utils/validateProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/validateProject.js -------------------------------------------------------------------------------- /src/utils/yarn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/src/utils/yarn.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boltpkg/bolt/HEAD/yarn.lock --------------------------------------------------------------------------------