Package Exports
- matai-pro
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (matai-pro) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
MataiPro
Dev environment is from ng-zorro-antd
Quick start
$ npm install three -S
$ npm install matai-pro -S
// app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { MataiProModule } from 'matai-pro';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
MataiProModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Demo
Development
$ git clone https://github.com/matai-tech/matai-pro.git
$ cd matai-pro
$ npm install
$ npm run start
Publish
$ npm config set scope mta-tech
$ npm run release
# after CI passed
$ npm run generate
$ cd publish && npm publish