Compare commits

..

No commits in common. "b6650c2e3209a1ab606b6ad1f5c5347f2cea509b" and "fcf0db3e7c3a2229ccd792300dcdc061f9f68f7d" have entirely different histories.

2 changed files with 1 additions and 24 deletions

View file

@ -46,9 +46,6 @@ jobs:
# Transpile/Build the package (TypeScript -> JavaScript) # Transpile/Build the package (TypeScript -> JavaScript)
- name: Transpile/Build the package (TypeScript -> JavaScript) - name: Transpile/Build the package (TypeScript -> JavaScript)
run: | run: |
# Because Yarn is used locally better to install and use it than have to debug weird inconsistencies
npm install --global yarn
# Install needed dependencies # Install needed dependencies
yarn install yarn install

View file

@ -5,27 +5,7 @@
"author": "Bridgeman Accessible <info@bridgemanaccessible.ca>", "author": "Bridgeman Accessible <info@bridgemanaccessible.ca>",
"repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/ba-web-framework.git", "repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/ba-web-framework.git",
"license": "MIT", "license": "MIT",
"type": "module", "main": "./index.ts",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./middlewares": {
"types": "./middlewares/index.d.ts",
"default": "./middlewares/index.js"
},
"./decorators": {
"types": "./decorators/index.d.ts",
"default": "./decorators/index.js"
},
"./controllers": {
"types": "./controllers/index.d.ts",
"default": "./controllers/index.js"
}
},
"scripts": { "scripts": {
"clean": "rm -rf dist", "clean": "rm -rf dist",
"build": "tsc", "build": "tsc",