@nitunity/api-compiler
Advanced tools
Comparing version 0.0.3 to 0.0.4
require('dotenv').config() | ||
require('./modules/unlink') | ||
module.exports = require('./modules') |
const request = require('./request') | ||
module.exports.run = () => { | ||
module.exports.run = async (object) => { | ||
await destroy(object) | ||
await call(object) | ||
} | ||
const destroy = (object) => { | ||
console.log(object) | ||
} | ||
const call = () => { | ||
request.posts() | ||
@@ -6,0 +15,0 @@ .then((response) => { |
const fs = require('fs') | ||
const path = require('path') | ||
module.exports.destroy = () => { | ||
} |
{ | ||
"name": "@nitunity/api-compiler", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "This package is API for compiling HTML templates using Nunjucks template engine", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
4713
130