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 .build.yarnrc.yml
.drone.yml .drone.yml
.prettierrc .eslintrc*
.prettierrc*
.yarnrc.yml .yarnrc.yml
babel.config.* babel.config.*
jest.config.* jest.config.*

View File

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

View File

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