5 Commits
1.0.2 ... 1.0.6

Author SHA1 Message Date
81c080f784 Fixed! But not drone publishing... 2023-05-24 12:18:38 -04:00
4073a6d619 Merge branch 'main' of ssh://git.mifi.dev:12022/mifi/services-common 2023-05-24 11:54:50 -04:00
69b4ad31c2 Duh. 2023-05-24 11:54:29 -04:00
eb52cba62f Duh. 2023-05-24 11:52:21 -04:00
2729369338 Duh 2023-05-24 11:51:40 -04:00
3 changed files with 12 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
.build.yarnrc.yml
.drone.yml
.prettierrc
.eslintrc*
.prettierrc*
.yarnrc.yml
babel.config.*
jest.config.*

View File

@@ -1,6 +1,6 @@
{
"name": "@mifi/services-common",
"version": "1.0.2",
"version": "1.0.6",
"author": "mifi (Mike Fitzpatrick)",
"license": "MIT",
"scripts": {
@@ -11,7 +11,7 @@
"lint:fix": "eslint --fix --ext .ts,.tsx src/",
"prettier": "prettier --check 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'",
"test": "jest --passWithNoTests"
"test": "jest --passWithNoTests ./src"
},
"devDependencies": {
"@babel/core": "^7.21.8",

View File

@@ -2,11 +2,15 @@
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": true,
"outDir": "./dist/",
"rootDirs": ["lib"],
"sourceMap": true
}
"outDir": "lib/",
"rootDirs": ["./", "src/"],
"strict": true,
"esModuleInterop": true,
"sourceMap": false
},
"include": ["src"]
}