Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-07-06 00:07:22 +0400
committerisaacs <i@izs.me>2012-07-06 00:07:22 +0400
commit8d12a0f4ace733e2b22ff27409338e60dca92a9c (patch)
treea43748d203a0c1665bda2391f7b446a89f77e630 /test
parentbe298fc2f933aa371f8769220d3fe97249833cd6 (diff)
Fix #2602 Invalidate package.json cache on unbuild
Diffstat (limited to 'test')
-rw-r--r--test/disabled/change-bin-1/bin/foo2
-rw-r--r--test/disabled/change-bin-1/package.json3
-rw-r--r--test/disabled/change-bin-2/bin/bar2
-rw-r--r--test/disabled/change-bin-2/package.json3
4 files changed, 10 insertions, 0 deletions
diff --git a/test/disabled/change-bin-1/bin/foo b/test/disabled/change-bin-1/bin/foo
new file mode 100644
index 000000000..fb16c2b23
--- /dev/null
+++ b/test/disabled/change-bin-1/bin/foo
@@ -0,0 +1,2 @@
+#!/bin/bash
+echo "foo"
diff --git a/test/disabled/change-bin-1/package.json b/test/disabled/change-bin-1/package.json
new file mode 100644
index 000000000..0d82f3afa
--- /dev/null
+++ b/test/disabled/change-bin-1/package.json
@@ -0,0 +1,3 @@
+{"name":"npm-test-change-bin"
+,"version":"1.2.3"
+,"directories":{"bin":"./bin"}}
diff --git a/test/disabled/change-bin-2/bin/bar b/test/disabled/change-bin-2/bin/bar
new file mode 100644
index 000000000..fb16c2b23
--- /dev/null
+++ b/test/disabled/change-bin-2/bin/bar
@@ -0,0 +1,2 @@
+#!/bin/bash
+echo "foo"
diff --git a/test/disabled/change-bin-2/package.json b/test/disabled/change-bin-2/package.json
new file mode 100644
index 000000000..3fdc538fa
--- /dev/null
+++ b/test/disabled/change-bin-2/package.json
@@ -0,0 +1,3 @@
+{"name":"npm-test-change-bin"
+,"version":"2.3.4"
+,"directories":{"bin":"./bin"}}