@wocker/core
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -6,2 +6,3 @@ export { Cli } from "@kearisp/cli"; | ||
export * from "./makes/DI"; | ||
export * from "./makes/FSManager"; | ||
export * from "./makes/Logger"; | ||
@@ -8,0 +9,0 @@ export * from "./makes/Plugin"; |
@@ -24,2 +24,3 @@ "use strict"; | ||
__exportStar(require("./makes/DI"), exports); | ||
__exportStar(require("./makes/FSManager"), exports); | ||
__exportStar(require("./makes/Logger"), exports); | ||
@@ -26,0 +27,0 @@ __exportStar(require("./makes/Plugin"), exports); |
@@ -17,4 +17,5 @@ import "reflect-metadata"; | ||
dockerfile?: string; | ||
scripts?: string[]; | ||
buildArgs?: EnvConfig; | ||
env: EnvConfig; | ||
buildArgs?: EnvConfig; | ||
volumes?: string[]; | ||
@@ -21,0 +22,0 @@ ports?: string[]; |
@@ -28,2 +28,3 @@ "use strict"; | ||
this.imageName = data.imageName; | ||
this.scripts = data.scripts; | ||
this.buildArgs = data.buildArgs; | ||
@@ -30,0 +31,0 @@ this.env = data.env || {}; |
@@ -18,3 +18,4 @@ import { AppConfig } from "../types/AppConfig"; | ||
abstract activatePlugin(name: string): Promise<void>; | ||
abstract deactivatePlugin(name: string): Promise<void>; | ||
} | ||
export { AppConfigService }; |
@@ -10,2 +10,8 @@ /// <reference types="node" /> | ||
tty?: boolean; | ||
ulimits?: { | ||
[key: string]: { | ||
hard?: number; | ||
soft?: number; | ||
}; | ||
}; | ||
links?: string[]; | ||
@@ -12,0 +18,0 @@ env?: { |
{ | ||
"name": "@wocker/core", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"author": "Kris Papercut <krispcut@gmail.com>", | ||
"description": "Wocker Core", | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"author": "Kris Papercut <krispcut@gmail.com>", | ||
"license": "MIT", | ||
"scripts": { | ||
@@ -16,3 +16,3 @@ "prepare": "npm run build", | ||
"dependencies": { | ||
"@kearisp/cli": "^1.0.2", | ||
"@kearisp/cli": "^1.0.3", | ||
"fs": "^0.0.1-security", | ||
@@ -19,0 +19,0 @@ "path": "^0.12.7", |
33375
865
45
3
Updated@kearisp/cli@^1.0.3