Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated traversal code -- needs proper testing #16

Open
wants to merge 10 commits into
base: dev-meld-2.0
Choose a base branch
from
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
node_modules_save
.eslintcache
18 changes: 18 additions & 0 deletions build-meld-clients-core-lib.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Script to re-build meld-clients-core library
#
# 'node_modules' is moved to 'node_modules_save', because building apps against a
# local copy fails is the nodule_modules directory is present in 'meld-clients-core'
#
# 'npm link' sets up for testing with the local instance:
# In an app that is to be built/run against the local instance,
# use the following command:
# npm link meld-clients-core
#

mv node_modules_save node_modules
npm install
npm run build
npm link # Used for testing with local instance
mv node_modules node_modules_save

# End.
Loading