File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
all : ci lib/opentdf-client-$(version ) .tgz remote-store/opentdf-remote-store-$(version ) .tgz web-app/opentdf-web-app-$(version ) .tgz
25
25
26
26
cli/opentdf-cli-$(version ) .tgz : lib/opentdf-client-$(version ) .tgz $(shell find cli -not -path '* /dist* ' -and -not -path '* /coverage* ' -and -not -path '* /node_modules* ')
27
- (cd cli && npm ci ../lib/opentdf-client-$( version) .tgz && npm pack)
27
+ (cd cli && npm uninstall @opentdf/client && npm ci && npm i ../lib/opentdf-client-$( version) .tgz && npm pack)
28
28
29
29
remote-store/opentdf-remote-store-$(version ) .tgz : lib/opentdf-client-$(version ) .tgz $(shell find remote-store -not -path '* /dist* ' -and -not -path '* /coverage* ' -and -not -path '* /node_modules* ')
30
- (cd remote-store && npm ci ../lib/opentdf-client-$( version) .tgz && npm pack)
30
+ (cd remote-store && npm uninstall @opentdf/client && npm ci && npm i ../lib/opentdf-client-$( version) .tgz && npm pack)
31
31
32
32
web-app/opentdf-web-app-$(version ) .tgz : lib/opentdf-client-$(version ) .tgz $(shell find web-app -not -path '* /dist* ' -and -not -path '* /coverage* ' -and -not -path '* /node_modules* ')
33
- (cd web-app && npm ci ../lib/opentdf-client-$( version) .tgz && npm pack && npm run build)
33
+ (cd web-app && npm uninstall @opentdf/client && npm ci && npm i ../lib/opentdf-client-$( version) .tgz && npm pack && npm run build)
34
34
35
35
lib/opentdf-client-$(version ) .tgz : $(shell find lib -not -path '* /dist* ' -and -not -path '* /coverage* ' -and -not -path '* /node_modules* ')
36
36
(cd lib && npm ci --including=dev && npm pack)
You can’t perform that action at this time.
0 commit comments