A JavaScript UI component that allows a user to choose one of their Notebook Sections For example, this is consumed in https://github.com/OneNoteDev/WebClipper
1. Install npm -- https://nodejs.org/en/download/
$ npm install --global gulp(Note: on windows, you also need to add "%appdata%\npm" to your PATH)
From the root of this project, run:
$ npm installFrom the root of this project, run:
$ gulp setupNow just run:
$ gulpAt this point you should see the tests passing, and see the packaged code in the target folder
$ gulp cleanRemoves all of the generated files from build, and uninstalls anything done in setup
$ gulp setupInstalls the d.ts files and links the non-published npm packages
$ gulp build(Note: this is currently the default command when you run gulp)
The command you will use the most often when making code changes:
- Compiles LESS and TypeScript into /build
- Bundles the JavaScript modules together into /bundle
- Exports all the needed files to /target
$ gulp runTestsRun all of the unit tests on the command line