Finishing touches and version bump... let the development continue!
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-26 12:10:06 -04:00
parent 62c50964fa
commit 9dc3520989
4 changed files with 22 additions and 7 deletions

View File

@@ -91,7 +91,7 @@ steps:
commands: commands:
- yarn set version stable - yarn set version stable
- yarn install - yarn install
- yarn build:production - yarn build:package
volumes: volumes:
- name: yarnrc - name: yarnrc
path: /drone/auth/.yarnrc.yml path: /drone/auth/.yarnrc.yml
@@ -170,11 +170,8 @@ depends_on:
- Test Pipeline - Test Pipeline
trigger: trigger:
branch:
- main
event: event:
# - tag - tag
- push
--- ---
kind: pipeline kind: pipeline

View File

@@ -1,10 +1,11 @@
{ {
"name": "@mifi/auth-service", "name": "@mifi/auth-service",
"version": "1.0.11", "version": "1.0.12",
"author": "mifi (Mike Fitzpatrick)", "author": "mifi (Mike Fitzpatrick)",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"build:package": "tsc -p ./tsconfig.package.json",
"build:production": "tsc -p ./tsconfig.production.json", "build:production": "tsc -p ./tsconfig.production.json",
"format": "prettier:fix && lint:fix", "format": "prettier:fix && lint:fix",
"lint": "eslint --ext .ts,.tsx src/", "lint": "eslint --ext .ts,.tsx src/",

17
tsconfig.package.json Normal file
View File

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

View File

@@ -2,7 +2,7 @@
"extends": "@tsconfig/node16/tsconfig.json", "extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"declaration": true, "declaration": false,
"experimentalDecorators": true, "experimentalDecorators": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"noImplicitAny": true, "noImplicitAny": true,