chdir-promise
Advanced tools
Comparing version 0.6.1 to 0.6.2
@@ -1,1 +0,1 @@ | ||
{"name":"chdir-promise","version":"0.6.1","description":"Change working dir and return a promise, a stack of folders is maintained to jump back","main":"index.js","scripts":{"test":"echo running unit tests","posttest":"npm run unit","unit":"mocha test/*-spec.js","demo":"DEBUG=chdir-promise node test/demo.js","deps":"deps-ok && dependency-check --no-dev .","semantic-release":"semantic-release","commit":"commit-wizard","size":"t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";","pretty":"prettier-standard *.js src/*.js test/*.js","prelint":"npm run pretty","lint":"standard --verbose --fix *.js src/*.js test/*.js","pretest":"npm run lint","issues":"git-issues","unused-deps":"dependency-check --unused --no-dev ."},"repository":{"type":"git","url":"https://github.com/bahmutov/chdir-promise.git"},"files":["index.js"],"keywords":["chdir","change","directory","folder","promise","stack","folders","working","cwd"],"author":"Gleb Bahmutov <gleb.bahmutov@gmail.com>","license":"MIT","bugs":{"url":"https://github.com/bahmutov/chdir-promise/issues"},"homepage":"https://github.com/bahmutov/chdir-promise","dependencies":{"bluebird":"^3.5.1","check-more-types":"2.24.0","debug":"3.1.0","lazy-ass":"1.6.0"},"devDependencies":{"dependency-check":"2.9.1","deps-ok":"1.2.1","git-issues":"^1.3.1","github-post-release":"1.13.1","mocha":"^4.0.1","pre-git":"3.15.3","prettier-standard":"7.0.3","semantic-release":"9.0.0","standard":"10.0.3"},"config":{"pre-git":{"commit-msg":"simple","pre-commit":["npm test"],"pre-push":["npm run deps","npm run unused-deps","npm run size"],"post-commit":[],"post-checkout":[],"post-merge":[]}},"release":{"generateNotes":"github-post-release","analyzeCommits":"simple-commit-message"}} | ||
{"name":"chdir-promise","version":"0.6.2","description":"Change working dir and return a promise, a stack of folders is maintained to jump back","main":"index.js","scripts":{"test":"echo running unit tests","posttest":"npm run unit","unit":"mocha test/*-spec.js","demo":"DEBUG=chdir-promise node test/demo.js","deps":"deps-ok && dependency-check --no-dev .","semantic-release":"semantic-release pre && npm publish && semantic-release post","commit":"commit-wizard","size":"t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";","pretty":"prettier-standard *.js src/*.js test/*.js","prelint":"npm run pretty","lint":"standard --verbose --fix *.js src/*.js test/*.js","pretest":"npm run lint","issues":"git-issues","unused-deps":"dependency-check --unused --no-dev ."},"repository":{"type":"git","url":"https://github.com/bahmutov/chdir-promise.git"},"files":["index.js"],"keywords":["chdir","change","directory","folder","promise","stack","folders","working","cwd"],"author":"Gleb Bahmutov <gleb.bahmutov@gmail.com>","license":"MIT","bugs":{"url":"https://github.com/bahmutov/chdir-promise/issues"},"homepage":"https://github.com/bahmutov/chdir-promise","dependencies":{"bluebird":"^3.5.1","check-more-types":"2.24.0","debug":"3.1.0","lazy-ass":"1.6.0"},"devDependencies":{"dependency-check":"2.9.1","deps-ok":"1.2.1","git-issues":"^1.3.1","github-post-release":"1.13.1","mocha":"^4.0.1","pre-git":"3.15.3","prettier-standard":"7.0.3","semantic-release":"8.2.3","standard":"10.0.3"},"config":{"pre-git":{"commit-msg":"simple","pre-commit":["npm test"],"pre-push":["npm run deps","npm run unused-deps","npm run size"],"post-commit":[],"post-checkout":[],"post-merge":[]}},"release":{"generateNotes":"github-post-release","analyzeCommits":"simple-commit-message"}} |
@@ -52,3 +52,3 @@ # chdir-promise | ||
.then(chdir.back) | ||
.to(() => chdir.to('second/folder')) | ||
.then(() => chdir.to('second/folder')) | ||
``` | ||
@@ -60,3 +60,3 @@ | ||
.then(chdir.back) | ||
.to(chdir.nextTo('second/folder')) | ||
.then(chdir.nextTo('second/folder')) | ||
``` | ||
@@ -63,0 +63,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6487