1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00

chore: fixing the error when using in angular, added isNode check for imports

This commit is contained in:
2021-10-12 16:45:39 +02:00
parent 90b11fe3fa
commit 8e9f1df1ce

View File

@@ -1,7 +1,10 @@
import * as path from 'path'
import { getRealPath, folderExists, createFolder } from '@sasjs/utils'
import { isNode } from '../utils'
export const getTmpFolderPath = async () => {
if (!isNode()) return 'Error: not node environment'
const { getRealPath, folderExists, createFolder } = require('@sasjs/utils/file')
const path = require('path')
const tmpFolderPath = path.join(__dirname, '..', 'tmp')
if (!(await folderExists(tmpFolderPath))) await createFolder(tmpFolderPath)
@@ -9,8 +12,20 @@ export const getTmpFolderPath = async () => {
return tmpFolderPath
}
export const getTmpFilesFolderPath = async () =>
path.join(await getTmpFolderPath(), 'files')
export const getTmpFilesFolderPath = async () => {
if (!isNode()) return 'Error: not node environment'
export const getTmpLogFolderPath = async () =>
path.join(await getTmpFolderPath(), 'log')
const { getRealPath, folderExists, createFolder } = require('@sasjs/utils/file')
const path = require('path')
return path.join(await getTmpFolderPath(), 'files')
}
export const getTmpLogFolderPath = async () => {
if (!isNode()) return 'Error: not node environment'
const { getRealPath, folderExists, createFolder } = require('@sasjs/utils/file')
const path = require('path')
return path.join(await getTmpFolderPath(), 'log')
}