This package has been deprecated

Author message:

Deprecated

fap-application

1.0.2 • Public • Published

Usage:

  • class Application
import Application from "fap-application";
import { Env } from "fap-application/lib/util/constants";
 
let app = new Application({
    cwd: process.cwd(),
    env: Env.DEVELOP
});
 
app.fetch().then(() => {
    return app.reset();
}).then(() => {
    return app.checkout('release');
}).then(() => {
    return app.reset('12345678');
});
 
  • class Packer
import { Packer } from "fap-application";
import { Env } from "fap-application/lib/util/constants";
 
let packer = new Packer({
    cwd: process.cwd(),
    env: Env.PRODUCTION
});
 
let app = packer.app;
 
app.fetch().then(() => {
    return app.reset();
}).then(() => {
    return app.checkout('release');
}).then(() => {
    return app.reset('12345678');
}).then(() => {
    packer.build();
});
 

Readme

Keywords

none

Package Sidebar

Install

npm i fap-application

Weekly Downloads

1

Version

1.0.2

License

ISC

Last publish

Collaborators

  • nilennoct