diff --git a/package-lock.json b/package-lock.json index 576559c..5d1a261 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "@gitzone/tsrun": "^1.2.37", "@gitzone/tstest": "^1.0.72", "@pushrocks/tapbundle": "^5.0.4", - "@types/node": "^18.6.2", + "@types/node": "^18.6.3", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0" } @@ -1910,9 +1910,9 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "18.6.2", - "resolved": "https://verdaccio.lossless.one/@types%2fnode/-/node-18.6.2.tgz", - "integrity": "sha512-KcfkBq9H4PI6Vpu5B/KoPeuVDAbmi+2mDBqGPGUgoL7yXQtcWGu2vJWmmRkneWK3Rh0nIAX192Aa87AqKHYChQ==", + "version": "18.6.3", + "resolved": "https://verdaccio.lossless.one/@types%2fnode/-/node-18.6.3.tgz", + "integrity": "sha512-6qKpDtoaYLM+5+AFChLhHermMQxc3TOEFIDzrZLPRGHPrLEwqFkkT5Kx3ju05g6X7uDPazz3jHbKPX0KzCjntg==", "license": "MIT" }, "node_modules/@types/parse5": { @@ -9978,9 +9978,9 @@ "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" }, "@types/node": { - "version": "18.6.2", - "resolved": "https://verdaccio.lossless.one/@types%2fnode/-/node-18.6.2.tgz", - "integrity": "sha512-KcfkBq9H4PI6Vpu5B/KoPeuVDAbmi+2mDBqGPGUgoL7yXQtcWGu2vJWmmRkneWK3Rh0nIAX192Aa87AqKHYChQ==" + "version": "18.6.3", + "resolved": "https://verdaccio.lossless.one/@types%2fnode/-/node-18.6.3.tgz", + "integrity": "sha512-6qKpDtoaYLM+5+AFChLhHermMQxc3TOEFIDzrZLPRGHPrLEwqFkkT5Kx3ju05g6X7uDPazz3jHbKPX0KzCjntg==" }, "@types/parse5": { "version": "6.0.3", diff --git a/package.json b/package.json index 38eb91e..8c4d590 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "type": "module", "scripts": { "test": "(tstest test/)", - "build": "(tsbuild --web)", + "build": "(tsbuild --web --allowimplicitany)", "buildDocs": "tsdoc" }, "repository": { @@ -31,9 +31,7 @@ "@gitzone/tsrun": "^1.2.37", "@gitzone/tstest": "^1.0.72", "@pushrocks/tapbundle": "^5.0.4", - "@types/node": "^18.6.2", - "tslint": "^6.1.3", - "tslint-config-prettier": "^1.18.0" + "@types/node": "^18.6.3" }, "dependencies": { "@pushrocks/smartfile": "^10.0.4", diff --git a/test/test.ts b/test/test.ts index f411c90..06089e5 100644 --- a/test/test.ts +++ b/test/test.ts @@ -6,14 +6,14 @@ import * as smartpath from '@pushrocks/smartpath'; export { smartpath }; -const __dirname = smartpath.get.dirnameFromImportMetaUrl(import.meta.url); +const testDir = smartpath.get.dirnameFromImportMetaUrl(import.meta.url); process.env['key1'] = 'original'; let testQenv: qenv.Qenv; tap.test('should create a new class', async () => { - testQenv = new qenv.Qenv(path.join(__dirname, 'assets'), path.join(__dirname, 'assets'), false); + testQenv = new qenv.Qenv(path.join(testDir, 'assets'), path.join(testDir, 'assets'), false); expect(testQenv).toBeInstanceOf(qenv.Qenv); }); diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index af1207f..b1abb82 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@pushrocks/qenv', - version: '5.0.1', + version: '5.0.2', description: 'easy promised environments' }