Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/devGuide/development/settingUp.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ We recommend the **WebStorm IDE** for working with MarkBind code.
1. **Bind your cloned version of MarkBind to your console** by navigating to the cloned `packages/cli` folder and running `npm link`

1. **Install dependencies** by running
<popover content="Under the hood, this calls `npm ci` and `lerna bootstrap`">`npm run setup`</popover>
<popover content="Under the hood, this calls `npm ci` and `npm prepare`">`npm run setup`</popover>
in the **root folder** of your cloned repo.

1. **Congratulations!** Now you are ready to start modifying MarkBind code.
Expand Down Expand Up @@ -80,4 +80,4 @@ If you ever need to uninstall the hooks, simply run `uninstall` instead of `inst
Try running either `markbind serve -d` or `npm run build:web` to view frontend changes (especially after pulling a frontend update that someone else may have pushed). You can see more details [here](workflow.md#editing-frontend-features).

{% from "njk/common.njk" import previous_next %}
{{ previous_next('../bootcamp/implementAFeature', 'workflow') }}
{{ previous_next('../bootcamp/implementAFeature', 'workflow') }}
4 changes: 3 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
"packages": [
"packages/*"
],
"version": "4.1.0"
"version": "4.1.0",
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true
}
14 changes: 14 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"test",
"updatetest"
]
}
}
},
"targetDefaults": {}
}
Loading