Skip to content

Commit 4877042

Browse files
committed
Remove sdk/node folder from fabric project in master
The new project 'fabric-sdk-node' replaces the fabric sdk/node code so there is no need to keep the old code in fabric. See FAB-782. Change-Id: I143035192386e310d53ce90f2a48b0218f3af83d Signed-off-by: cdaughtr <[email protected]>
1 parent 9eb99b3 commit 4877042

28 files changed

+2
-8117
lines changed

Makefile

+2-9
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
# - peer-image[-clean] - ensures the peer-image is available[/cleaned] (for behave, etc)
3232
# - membersrvc-image[-clean] - ensures the membersrvc-image is available[/cleaned] (for behave, etc)
3333
# - protos - generate all protobuf artifacts based on .proto files
34-
# - node-sdk - builds the node.js client sdk
35-
# - node-sdk-unit-tests - runs the node.js client sdk unit tests
3634
# - clean - cleans the build area
3735
# - dist-clean - superset of 'clean' that also removes persistent state
3836

@@ -63,7 +61,7 @@ K := $(foreach exec,$(EXECUTABLES),\
6361
$(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH: Check dependencies")))
6462

6563
# SUBDIRS are components that have their own Makefiles that we can invoke
66-
SUBDIRS = gotools sdk/node
64+
SUBDIRS = gotools
6765
SUBDIRS:=$(strip $(SUBDIRS))
6866

6967
GOSHIM_DEPS = $(shell ./scripts/goListFiles.sh github.com/hyperledger/fabric/core/chaincode/shim | sort | uniq)
@@ -95,12 +93,7 @@ membersrvc-image: build/image/membersrvc/.dummy
9593
unit-test: peer-image gotools
9694
@./scripts/goUnitTests.sh $(DOCKER_TAG) "$(GO_LDFLAGS)"
9795

98-
node-sdk: sdk/node
99-
100-
node-sdk-unit-tests: peer membersrvc
101-
cd sdk/node && $(MAKE) unit-tests
102-
103-
unit-tests: unit-test node-sdk-unit-tests
96+
unit-tests: unit-test
10497

10598
.PHONY: images
10699
images: $(patsubst %,build/image/%/.dummy, $(IMAGES))

sdk/node/.gitignore

-9
This file was deleted.

sdk/node/.npmignore

-4
This file was deleted.

sdk/node/Makefile

-82
This file was deleted.

sdk/node/README.md

-99
This file was deleted.

sdk/node/bin/main.js

-143
This file was deleted.

0 commit comments

Comments
 (0)