BREAKING CHANGE(core): switch to esm

This commit is contained in:
Philipp Kunz 2022-08-07 16:37:19 +02:00
parent 8eafd81c9f
commit bf6d9ad777
10 changed files with 7783 additions and 18341 deletions

24
.vscode/launch.json vendored
View File

@ -2,28 +2,10 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "current file", "command": "npm test",
"type": "node", "name": "Run npm test",
"request": "launch", "request": "launch",
"args": [ "type": "node-terminal"
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
} }
] ]
} }

View File

@ -5,7 +5,7 @@
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "pushrocks", "gitscope": "pushrocks",
"gitrepo": "smartsmtp", "gitrepo": "smartsmtp",
"shortDescription": "a module for handling smtp stuff", "description": "a module for handling smtp stuff",
"npmPackagename": "@pushrocks/smartsmtp", "npmPackagename": "@pushrocks/smartsmtp",
"license": "MIT", "license": "MIT",
"projectDomain": "push.rocks" "projectDomain": "push.rocks"

26036
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,25 +5,24 @@
"description": "a module for handling smtp stuff", "description": "a module for handling smtp stuff",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"build": "(tsbuild --web)" "build": "(tsbuild --web --allowimplicitany)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.0.22", "@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.44", "@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^4.0.10", "@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^3.0.7", "@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^15.12.2", "@types/node": "^18.6.4"
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartmail": "^1.0.18", "@pushrocks/smartmail": "^1.0.18",
"@types/nodemailer": "^6.4.0", "@types/nodemailer": "^6.4.5",
"nodemailer": "^6.4.11" "nodemailer": "^6.7.7"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"

View File

@ -1,5 +1,5 @@
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@pushrocks/tapbundle';
import * as smartsmtp from '../ts/index'; import * as smartsmtp from '../ts/index.js';
import { Qenv } from '@pushrocks/qenv'; import { Qenv } from '@pushrocks/qenv';
import * as smartmail from '@pushrocks/smartmail'; import * as smartmail from '@pushrocks/smartmail';
@ -14,7 +14,7 @@ tap.test('should create a valid instance of Smartsmtp', async () => {
smtpUser: testQenv.getEnvVarOnDemand('SMTP_USER'), smtpUser: testQenv.getEnvVarOnDemand('SMTP_USER'),
smtpPassword: testQenv.getEnvVarOnDemand('SMTP_PASSWORD'), smtpPassword: testQenv.getEnvVarOnDemand('SMTP_PASSWORD'),
}); });
expect(testSmartsmtp).to.be.instanceOf(smartsmtp.Smartsmtp); expect(testSmartsmtp).toBeInstanceOf(smartsmtp.Smartsmtp);
}); });
tap.test('should send a message with empty body', async () => { tap.test('should send a message with empty body', async () => {

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartsmtp',
version: '3.0.0',
description: 'a module for handling smtp stuff'
}

View File

@ -1 +1 @@
export * from './smartsmtp.classes.smartsmtp'; export * from './smartsmtp.classes.smartsmtp.js';

View File

@ -1,4 +1,4 @@
import * as plugins from './smartsmtp.plugins'; import * as plugins from './smartsmtp.plugins.js';
export interface ISmartSmtpOptions { export interface ISmartSmtpOptions {
smtpServer: string; smtpServer: string;

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext",
"esModuleInterop": true
}
}

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}