2.6 KiB
Development Workflow
The repository contains several packages and apps:
tns-platform-declarations- Android and iOS native APIs supported in JavaScripttns-core-modules- Core ui, io and sensor modulesapps- UI app used for manual testing and automationtests- Unit tests for thetns-core-modules
Working with the repo is organized with npm scripts,
go and read through the scripts section in the package.json.
Managing dependencies:
tns-core-modulesdepends on:tns-platform-declarations
appsdepends on:tns-platform-declarationstns-core-modules
testsdepends on:tns-platform-declarationstns-core-modules
NOTE:
tns-core-modulesdepends ontns-core-modules-widgets, this dependency contains native code and is rarely modified so for now it remains outside this repo.
Manage Dependencies
Get devDependencies by:
npm install
Setting up the environment for work we use npm link.
The dependencies in the repo are npm link-ed (~synlinked) using the following script:
npm run setup
TypeScript
The following commands are commonly used to compile the tns-core-modules:
# Full tsc with type checking ~22.2s.
tsc
# Fast tsc ~11.2s.
tsc --skipLibCheck
# Fast watcher, ~4s. on save
tsc --skipLibCheck -w
The modules have typescript as devDependency so you should also be able to use locally installed TypeScript compiler from node_modules:
./node_modules/.bin/tsc
You can compile the typescript files in the tns-core-modules, tns-platform-declarations, apps and tests at once at the root of the repo:
npm run tsc
Tests
The test app is an ordinary NativeScript app that logs the test results as it go. To run the test app:
# Once after npm install
npm run setup
# After changes in the modules or the tests
tsc
tns livesync ios --path tests
tns livesync android --path tests
Platform declarations
To update the platform declarations (the ios.d.ts-es) you can run:
npm install
npm run dev-declarations
This script will update the iOS declarations. Android tools are not integrated yet. The declarations are generated from the test app and will include the native code from tns-core-modules-widgets.
Documentation API reference
The following will build the API reference pages in bin/dist/apiref:
npm run typedoc
If you want to improve on the documentation you can also build and start up dev web server:
npm run dev-typedoc
The terminal will point the address you can open in your web browsed.