1.1.1 • Published 9 years ago
@telerik/kendo-package-base v1.1.1
A starter repository for Kendo UI platform agnostic components, which provides the basic directory structure and dependencies.
Structure
- The
srcdirectory contains the component source code. All files should be have the.jsextensions so that the build scripts may pick them. - The
src/main.jsfile should import and re-export all public components of the package. It is used for thebuild-cdntask. - The
src/main.d.tsfile should export all typescript deffinitions. The
src/util.jsis an optional example of an additional file - you may remove it if unnecessary.The
testdirectory contains the component tests. They are transpiled just like the source code itself, and are run with Jasmine in NodeJS.- The
docsdirectory contains markdown files that document the specifics of the component.
Gulp tasks
build-npm-package- builds the scripts and styles indist/npmin CommonJS format;build-cdn- builds the scripts and styles indist/cdnin UMD format.test- runs the tests with Jasmine in NodeJS.watch-test- runs the tests in watch mode.docs- launches a preview server for the documentation in thedocsdirectory