Skip to content
This repository has been archived by the owner on Oct 17, 2019. It is now read-only.

Commit

Permalink
Fix shr-adl-bmm-export reference and yarn link
Browse files Browse the repository at this point in the history
Fix the require on shr-adl-bmm export to use the correct (updated) package name -- and not a relative path.
Add it to yarn link and unlink.
  • Loading branch information
cmoesel committed Aug 17, 2018
1 parent ce1cad3 commit 0ef9617
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const shrJSE = require('shr-json-schema-export');
const shrEE = require('shr-es6-export');
const shrFE = require('shr-fhir-export');
const shrJDE = require('shr-json-javadoc');
const shrAE = require('../shr-adl-bmm-exporter');
const shrAE = require('shr-adl-bmm-export');
const LogCounter = require('./logcounter');
const SpecificationsFilter = require('./filter');

Expand Down
5 changes: 5 additions & 0 deletions yarn-link-all
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ yarn link shr-models
yarn link shr-test-helpers
yarn link

cd ../shr-adl-bmm-export
echo "=============== shr-adl-bmm-export ================="
yarn link

cd ../shr-cli
echo "===================== shr-cli ======================"
yarn link shr-models
Expand All @@ -63,3 +67,4 @@ yarn link shr-json-schema-export
yarn link shr-json-javadoc
yarn link shr-es6-export
yarn link shr-fhir-export
yarn link shr-adl-bmm-export
5 changes: 5 additions & 0 deletions yarn-unlink-all
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bash

echo "===================== shr-cli ======================"
yarn unlink shr-adl-bmm-export
yarn unlink shr-fhir-export
yarn unlink shr-es6-export
yarn unlink shr-json-schema-export
Expand All @@ -10,6 +11,10 @@ yarn unlink shr-text-import
yarn unlink shr-expand
yarn unlink shr-models

cd ../shr-adl-bmm-export
echo "=============== shr-adl-bmm-export ================="
yarn unlink

cd ../shr-fhir-export
echo "================= shr-fhir-export =================="
yarn unlink shr-models
Expand Down

0 comments on commit 0ef9617

Please sign in to comment.