npm-registry-couchapp
Advanced tools
Comparing version 2.6.12 to 2.6.13
{ | ||
"name": "npm-registry-couchapp", | ||
"version": "2.6.12", | ||
"version": "2.6.13", | ||
"description": "The CouchApp implementation of an npm registry", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -5,2 +5,16 @@ # npm-registry-couchapp | ||
__deprecation notice: as npm has scaled, the registry architecture has gradually migrated towards | ||
a complex distributed architecture, of which npm-registry-couchapp is only a small part. FOSS | ||
is an important part of npm, and over time we plan on exposing more APIs, and [better documenting | ||
the existing API](https://github.com/npm/public-api).__ | ||
__npm-registry-couchapp is still a core part of our functionality, but all new registry features are | ||
now added to the micro-services that now make up npm. For this reason, we will not be accepting any | ||
pull requests, or making any changes to this codebase going forward.__ | ||
__For issues with the npmjs.com website, please open an issue on the | ||
[npm/www](https://github.com/npm/www) repo. For issues wih the registry | ||
service (for example, slow package downloads, or inability to publish a | ||
package), see the [npm/registry](https://github.com/npm/registry) repo.__ | ||
The design doc for The npm Registry CouchApp | ||
@@ -7,0 +21,0 @@ |
@@ -35,3 +35,2 @@ var common = require('./common.js') | ||
}, | ||
"_from": ".", | ||
"_npmUser": { | ||
@@ -58,3 +57,2 @@ "name": "user", | ||
}, | ||
"_from": ".", | ||
"_npmUser": { | ||
@@ -81,3 +79,2 @@ "name": "user", | ||
}, | ||
"_from": ".", | ||
"_npmUser": { | ||
@@ -425,13 +422,17 @@ "name": "other", | ||
], { env: env, cwd: inst }) | ||
c.stderr.pipe(process.stderr) | ||
var out = '' | ||
c.stdout.setEncoding('utf8') | ||
c.stdout.on('data', function(d) { | ||
out += d | ||
}) | ||
c.on('close', function(code) { | ||
t.notOk(code) | ||
t.similar(out, /(└── )?package@0.2.3/) | ||
rimraf.sync(path.resolve(inst, 'node_modules')) | ||
t.end() | ||
t.is(code, 0) | ||
c = common.npm(['--registry=' + reg, 'ls'], {env: env, cwd: inst}) | ||
c.stderr.pipe(process.stderr) | ||
var out = '' | ||
c.stdout.setEncoding('utf8') | ||
c.stdout.on('data', function(d) { | ||
out += d | ||
}) | ||
c.on('close', function(code) { | ||
t.notOk(code) | ||
t.similar(out, /package@0.2.3/) | ||
rimraf.sync(path.resolve(inst, 'node_modules')) | ||
t.end() | ||
}) | ||
}) | ||
@@ -438,0 +439,0 @@ }) |
Sorry, the diff of this file is not supported yet
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
1200301
26613
121