Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

pnpm

Fast, disk space efficient package manager
Collective - Host: opensource - https://opencollective.com/pnpm - Website: https://pnpm.io/ - Code: https://github.com/pnpm

chore: release v0.50.0

github.com/pnpm/supi - 57ffc35dc23d3d02887370f89e8bee535ad5d4e4 authored about 8 years ago
fix(bin): use real .bin directory path

github.com/pnpm/supi - 5048b7a8591c8676ff689528d78228b11c91c468 authored about 8 years ago
refactor(bin): expect the bin not the modules folder in the bin link function

github.com/pnpm/supi - dd2548f18edd43b0611114c1251083ff22d7721d authored about 8 years ago
feat(global): change default global path

Use ~/.pnpm-cache as the default cache path.
Use the Node path for hosting the global pnpm package.

github.com/pnpm/supi - b9104a457c5647808ecee4b07f6d3c6b511f7677 authored about 8 years ago
feat(bin): use npm global bin path for global installation

To make global CLIs work without any additional configuration

github.com/pnpm/supi - cdf321d02146861a4f338a2454e74a8bfa3b9128 authored about 8 years ago
fix(bin): proxy file require path

The path in require should always start with a dot.

So `require('./foo')` not `require('foo')`

github.com/pnpm/supi - 9cadc13836ee9676a6997285cf4981428c3a93a0 authored about 8 years ago
fix(global): change the global folder name to pnpm-global

The global path can't be pnpm because on Windows the pnpm sh file
is in the same folder.

github.com/pnpm/supi - e9d6bf53e0310fec023ce04696e8c0d00485ee01 authored about 8 years ago
docs: remove documentation about global install

github.com/pnpm/supi - 1e96e9cde0a8a965afb30901647137a6aa78ae22 authored about 8 years ago
fix: fixes for Node 4, style fixes

github.com/pnpm/supi - 08ef2e430ba5f24ca8a2b3deeb2d0f030780566d authored about 8 years ago
feat: make pnpm wait on lock

Also use `proper-lockfile` package. A similar thing which is yarn does.

github.com/pnpm/supi - ca48f5d94320866e905ec68aa8e6bf478bf4d371 authored about 8 years ago
fix: handle the case when the package manager name is scoped

github.com/pnpm/supi - d78390d1b9c418c8d2f0e8472960c1e77e647929 authored about 8 years ago
chore(package): don't use tap-diff

When tests run with tap-diff, ts-node errors are ignored.

github.com/pnpm/supi - d6f5c68cfd62918390d3909fd3ba326d0c3a0617 authored about 8 years ago
fix: remove spread-operator usage to support Node 4

github.com/pnpm/supi - 6345c19f9503d82d1d2ff73aaad4754190f82f84 authored about 8 years ago
refactor: provide b/c for shrinkwrap

github.com/pnpm/supi - b035c1d1f9d8f2d62654539702d010cc834876ee authored about 8 years ago
refactor: make resolvers return {resolution, package}

That removes pkg field from package resolution and we can simplify code which
saves resolution t...

github.com/pnpm/supi - 95f247e123b213f8a25b40a416130bdb981d4fce authored about 8 years ago
refactor: factor out fetch code from resolve

I replaved `ResolveResult` with `Resolution` which is more detailed type, a
discriminated union....

github.com/pnpm/supi - fd806ac5616684c0fe48c749200058214cca22e9 authored about 8 years ago
refactor: unify directory with link, tarball and local-tarball

Also make git resolver return tarball resolution for github hosted packages

github.com/pnpm/supi - 24dfeaa630263b65204e99bd181461159ca15ac1 authored about 8 years ago
refactor: save every resolution to shrinkwrap

github.com/pnpm/supi - cf729e1a6598d1da686b18cb14586bddb1a01a70 authored about 8 years ago
refactor: process linkLocal during the fetching

Previously we processed it during the resolution process but we don't need to
anymore.

github.com/pnpm/supi - 0f51b06047d244457b6ccbe5b59145c843c1cd81 authored about 8 years ago
chore(package): update unpack-stream to version 1.1.0

https://greenkeeper.io/

github.com/pnpm/supi - d78ccce693859f43ba3b554ce23e7429f580fece authored about 8 years ago
chore: release v0.49.2

github.com/pnpm/supi - 48644e9764f7fd109c1db26933f13c6b096efdc2 authored about 8 years ago
perf(git-resolver): try the GitHub API first to resolve git deps

Try the GitHub API first to resolve git deps. If fails due to
API limit, fall back to `git ls-re...

github.com/pnpm/supi - 658b263709e16719701a0188a38c5f5dab444e03 authored about 8 years ago
chore: release v0.49.1

github.com/pnpm/supi - b3de7d7d569b17bce0a66d682949ef0613ac0ca1 authored about 8 years ago
fix(git): git-hosted packages location in store

The commit ID has to be the last folder name of a git-hosted
dependency in the store.

github.com/pnpm/supi - a8e3648c16676c80b9f47edbcb87c280d6dcff11 authored about 8 years ago
revert: "test: temporarily skip GitHub tests"

This reverts commit 84878f8750c9b1adac3684a6d56db509c6ba6f73.

github.com/pnpm/supi - 49932fcd7383d7da58b23998043b11b646aaf43d authored about 8 years ago
refactor(git): remove unnecessary code from Git fetch logic

github.com/pnpm/supi - 61e5eb294dbfb2afc80355a25ddeae0781510905 authored about 8 years ago
fix(git): don't use GitHub API to avoid rate limit errors

Additionally, use ls-remote to resolve refs to commits, before clonings

github.com/pnpm/supi - 01fdfbad2eef78e1a4c09f282473a9750147f277 authored about 8 years ago
chore: release v0.49.0

github.com/pnpm/supi - 1754db90340c3edcee8c8047420836b2770d80f0 authored about 8 years ago
refactor: unite to if statements in hardlinkDir

github.com/pnpm/supi - 0619600501500ee1d4ef6c9d45568f072025f402 authored about 8 years ago
test: add test for a tarball with a broken symlink

github.com/pnpm/supi - d2375370a1591bf0eee28dbde50df72b5ed95c61 authored about 8 years ago
refactor: check for ENOENT in safeLink instead of doing a stat

github.com/pnpm/supi - 48e5a1d1c9b4a47dfb7fc1e0296f1923657b8604 authored about 8 years ago
fix: filter out broken symlinks when linking installs

We use `fs.lstat()` so we can gather the info about the link itself then use
`fs.exists()` in ca...

github.com/pnpm/supi - d5f6b09806b77d073dbf2d7386bf27291360ca4a authored about 8 years ago
refactor: log a warning in case of a broken symlink found

github.com/pnpm/supi - 2e49815ca1d17608148f690fa9abe745655bb9f0 authored about 8 years ago
test: rm unused artifacts in the fixture packages

Note that has-broken-symlink/has-broken.symlink.tar.gz contains a broken
link so the correspondi...

github.com/pnpm/supi - aadcf0e65601bc3213efa45c240ce1b706ebb143 authored about 8 years ago
fix: make fetch atomic

We fetch into a temp directory now and then fs.rename() into the target dir.
With fs.rename() be...

github.com/pnpm/supi - d0a1be6be8a5f214ee25a5be719a97b840d5ff02 authored about 8 years ago
test: remove not needed test

github.com/pnpm/supi - 08adc174130eb7ede82b73be9ccc690bb9713be2 authored about 8 years ago
docs(README): remove known issues section

github.com/pnpm/supi - 46c3b04ea8e282e24538b3cd3f8653b1aa8433ef authored about 8 years ago
refactor: rename logger to reporter

Reporter is a better name for specifying console output themes.

BREAKING CHANGE: the logger con...

github.com/pnpm/supi - b748c213db8a4285d621de728625d811847ffd28 authored about 8 years ago
refactor(reporter): move reporter selection out of API

github.com/pnpm/supi - 04c104c61402b65eeea9b233d94ddaf499ddadbd authored about 8 years ago
style(logging): fix indentation in streamParser.ts

github.com/pnpm/supi - ce477172eab5451ab3b4f46229e19b4fe6026b2f authored about 8 years ago
feat(log): use ndjson for console output

Close #538

github.com/pnpm/supi - 53f94417e7cfb1bef02e301a23f424aad9d51f09 authored about 8 years ago
chore: update dependencies

github.com/pnpm/supi - eb7c57014365aac4f866f63d3a0ab5ea1e0bdf8b authored about 8 years ago
feat(reporter): report everything via ndjson

github.com/pnpm/supi - 2dc2711914e58661fe10451126045e80de998771 authored about 8 years ago
refactor: remove redundant reporter import from extendOptions

github.com/pnpm/supi - 1087d87bb8414fbf2577f032b15aa43fa5a66cbd authored about 8 years ago
refactor(reporter): remove debug option

Debug option was used with the debug package.
debug was substituted with bole.
To have more info...

github.com/pnpm/supi - b96e30cf3f47b3f02a03ba983ffc99b37b59884f authored about 8 years ago
refactor: rename pnpm-reporter-default

github.com/pnpm/supi - 74f8525bc1cb40045c076962772a84ca3077eb98 authored about 8 years ago
refactor: move reporters to separate packages

github.com/pnpm/supi - a7d508782cc5533e82e605361f2ae89faeef6846 authored about 8 years ago
fix(logging): lifecycle logs text

github.com/pnpm/supi - 1647adaabefee0c113ee7e1c3f472a35e53da955 authored about 8 years ago
refactor: move out file reporter to separate package

github.com/pnpm/supi - 53336acdae9c3905e09e25cbf86545e2eb24e5e1 authored about 8 years ago
feat: add ndjson reporter

github.com/pnpm/supi - d59afc80084c5a230d193d6f68847a4f52a37b59 authored about 8 years ago
refactor: use pnpm namespaced logs

github.com/pnpm/supi - a33870b4b968b23ab1009d4da9940f4063b47f4f authored about 8 years ago
refactor(logging): less postinstall debug logs

Reduce the number of redundant logs.

github.com/pnpm/supi - ad82df438bebd7ff3d802911dc422c0aab00d226 authored about 8 years ago
chore: release v0.0.1

github.com/pnpm/pnpm-default-reporter - fd4185fce927e4e53f05a4851fd38cb316475391 authored about 8 years ago
refactor: change pkgid property of InstallCheck

BREAKING CHANGE:

pkgid changed to pkgId

github.com/pnpm/pnpm-default-reporter - 83dab10b6aedb738fd380148f3aca973af6d167c authored about 8 years ago
chore: release v0.0.1

github.com/pnpm/logger - d610ff2aad5e73d3b9112dd0faf01805023c73c8 authored about 8 years ago
refactor: change InstallCheckMessage

BREAKING CHANGE:

pkgid changed to pkgId

github.com/pnpm/logger - 170626c41ba3bc98d19c12dcfbc700eb265b05af authored about 8 years ago
feat: pass package ID via pkgId property

github.com/pnpm/pnpm-install-checks - 3fe5263ce5ec5cf53e6f2f9df5a869ece5fed3e0 authored about 8 years ago
chore: release v1.1.0

github.com/pnpm/pnpm-install-checks - be6dab4112693f2182672c946e7ad632d38315d2 authored about 8 years ago
chore(package): update dependencies

https://greenkeeper.io/

github.com/pnpm/pnpm-install-checks - 77637abed250f4bb48038ab7d1355857da8885de authored about 8 years ago
docs(README): update

github.com/pnpm/pnpm-install-checks - 1d38274513cea5401404ce928024386272fde657 authored about 8 years ago
ci: update Node versions

github.com/pnpm/pnpm-install-checks - a8e50f756ebaba7b78fc55972dadcc981864700c authored about 8 years ago
test: use verdaccio instead of sinopia

Unfortunately sinopia is not maintained anymore.

github.com/pnpm/supi - 383e772921f4426df95adff23aecc6e068892978 authored about 8 years ago
docs(README): update preview

github.com/pnpm/supi - cab64a98ef8b975366ea25f29895c5c27b815638 authored about 8 years ago
refactor: rename package to pnpm-simple-reporter

github.com/pnpm/pnpm-simple-reporter - 681fe4e3d5ae3797254cb9b0bf3e82bb35ae019c authored about 8 years ago
refactor: rename the package to pnpm-default-reporter

github.com/pnpm/pnpm-default-reporter - 5b1871070269af86317ea0f67b70db4580827ca8 authored about 8 years ago
docs(README): update

github.com/pnpm/file-reporter - 572bc3d4e16220c2e986091249e62a5913294b25 authored about 8 years ago
refactor: use graceful-fs instead of fs

github.com/pnpm/file-reporter - 7022adb1fea78734c71aaec3ccf1ac002c0a3e91 authored about 8 years ago
refactor: remove redundant dependencies

github.com/pnpm/file-reporter - c826689f7b541f0121d759dcd99a9cd63c634ae4 authored about 8 years ago
chore: release v0.0.1

github.com/pnpm/file-reporter - ec89481cdd34557fffbfbe4960b0f4a6c1ea60a9 authored about 8 years ago
test: create test

github.com/pnpm/file-reporter - 25f726da2550491fa16f14f1cbe5942e615a0a6f authored about 8 years ago
feat: print pretty logs

github.com/pnpm/file-reporter - a8dd0dde01eac327f948ddcebf6bdb5093a8827f authored about 8 years ago
feat: initial commit

github.com/pnpm/file-reporter - 200ad707e3a24b7f04665ebad3d8b2bb9a0d2cd7 authored about 8 years ago
2.0.0-alpha.1

Fixes #8.
Fixes #209.
Fixes #222.

github.com/pnpm/node-fetch - 908f661664e51fd847a5f69eb31724bbf2b3724b authored about 8 years ago
Merge pull request #177 from bitinn/v2

node-fetch v2

github.com/pnpm/node-fetch - 8cf1541fb0155ac2e5e87b10a6a20d0db08b6b8f authored about 8 years ago
Fix Headers iterable initializer handling

github.com/pnpm/node-fetch - 502b6042081a6c564dd2125a1dd5c4e3864b99dd authored about 8 years ago
test: remove fallbacks for Node.js 0.10

github.com/pnpm/node-fetch - f198f937677bafa54eaaed4b5635410c456da4ae authored about 8 years ago
Use ES2015 export syntax (#212)

* Implement Rollup's external module check

* Use ES2015 export syntax

More friendly to ES2...

github.com/pnpm/node-fetch - 151de2bdfb39bc4786b7a07e1e116a5690df6b94 authored about 8 years ago
feat: initial commit

github.com/pnpm/pnpm-simple-reporter - 440170140381293366023f467b64a25b2f0f4380 authored about 8 years ago
feat: initial commit

github.com/pnpm/pnpm-default-reporter - 8c986b508237730fa1e27c9db1f66be36b266406 authored about 8 years ago
feat: initial commit

github.com/pnpm/logger - 688ab88fc3254722ac477648a317786ef80c5cf8 authored about 8 years ago
test: temporarily skip GitHub tests

Ref #536

github.com/pnpm/supi - 84878f8750c9b1adac3684a6d56db509c6ba6f73 authored about 8 years ago
chore: release v0.48.1

github.com/pnpm/supi - dca99b8817fa275bd251343dd3785524af0869bf authored about 8 years ago
fix(install): logging of cached packages should show resolved version

github.com/pnpm/supi - 924b584f6b2cb845170a8789597a2add9071361e authored about 8 years ago
docs(LICENSE): update years

github.com/pnpm/supi - aadede005a8da87ac1ef3cae20ce76cf6dc9326e authored about 8 years ago
docs(README): fix store structure example

github.com/pnpm/supi - 110e4035037913cb89cbdb015b179283ed02b571 authored about 8 years ago
refactor: force users to reinstall old node_modules

github.com/pnpm/supi - eb1ec303f28b79f770c83fda3fe08e7848ef06de authored about 8 years ago
fix: packages can require themself

node_modules structure changed

github.com/pnpm/supi - 59cd8cbede82a6830bd9310d6b8648b65c47df10 authored about 8 years ago
test: add new testing package

Add uses-pkg-with-self-usage testing package and rebuild sinopia cache

github.com/pnpm/supi - f678dd55d2d92d6a7abbe5f16e23463cefac67d5 authored about 8 years ago
chore: release v0.47.1

github.com/pnpm/supi - 190ac69e5412e24792b04cd6ee956cf9e9c8e893 authored about 8 years ago
chore(package): update cache-manager-fs to version 1.0.6

https://greenkeeper.io/

github.com/pnpm/supi - 81ea88c51dbf008ea382bdf88eb011637ec75a82 authored about 8 years ago
chore(package): update node-gyp to version 3.5.0

https://greenkeeper.io/

github.com/pnpm/supi - 6a99b2d5d22f34ae046bd81de36a3de6c94202a0 authored about 8 years ago
fix: cmd shim should work on Windows

:arrow_up: @zkochan/[email protected]

github.com/pnpm/supi - 344b0577844785690b8865f4f9b38453f829db1a authored about 8 years ago
fix(install): ignore EEXIST errors when linking

Ref #531

github.com/pnpm/supi - 8d228124dcad3c4863f78756e80384477d76e97b authored about 8 years ago
chore: release v2.2.1

github.com/pnpm/cmd-shim - 085e811faa3b176554a21e0b8c8d3b45d0402583 authored about 8 years ago
fix: the value of NODE_PATH should be in double quotes

Close #2

github.com/pnpm/cmd-shim - 0586ff45344ad1b88e55fc7c98bcc9756daa2cb6 authored about 8 years ago
chore: use the standard store location

github.com/pnpm/supi - 147a68da45c711710ba9ca7298f05e7624bf2980 authored about 8 years ago
fix: no hardcoded store loc for global package

The store location for the global package is not hardcoded.

github.com/pnpm/supi - 16fa79ed0740c33a2dcfb3b159ddef1893b26381 authored about 8 years ago