Compare commits
2 commits
fcf0db3e7c
...
b6650c2e32
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b6650c2e32 | ||
|
|
d4f0f2a6b0 |
2 changed files with 24 additions and 1 deletions
|
|
@ -46,6 +46,9 @@ 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
|
||||||
|
|
||||||
|
|
|
||||||
22
package.json
22
package.json
|
|
@ -5,7 +5,27 @@
|
||||||
"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",
|
||||||
"main": "./index.ts",
|
"type": "module",
|
||||||
|
"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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue