1.0.1 • Published 4 years ago

kiwi-bundle-api v1.0.1

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
4 years ago

Kiwi Bundle - API

Getting Started

./package.json (required)

{
  "name": "example",
  "version": "1.0.0",
  "scripts": {
    "start": "kiwi start",
    "test": "kiwi test",
    "build": "kiwi build",
    "deploy": "kiwi deploy",
    "undeploy": "kiwi undeploy"
  },
  "devDependencies": {
    "kiwi-bundle": "^3.0.1",
    "kiwi-bundle-api": "^1.0.0"
  }
}

./tsconfig.json (required)

{
  "extends": "./node_modules/kiwi-bundle/.models/ts/commonjs.json",
  "compilerOptions": {
    "rootDir": "src",
    "outDir": "dist"
  },
  "include": [
    "./src/**/*"
  ],
  "exclude": [
    "node_modules",
    "src/**/*.test.ts",
    "src/**/*.test.tsx"
  ]
}

./.gitignore (recommended)

dist/
node_modules/

./tslint.json (optional)

{
  "extends": "./node_modules/kiwi-bundle/.models/tslint/bf.json"
}