Skip to content

Commit

Permalink
chore: bumped codebytes to next version (#25)
Browse files Browse the repository at this point in the history
* version bump

* add build types
  • Loading branch information
BandanaKM authored Jan 29, 2022
1 parent 209a493 commit fc0f1c5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions packages/codebytes/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Dist
dist
3 changes: 2 additions & 1 deletion packages/codebytes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"build:clean": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly",
"build": "yarn build:clean && yarn build:compile && yarn build:types",
"build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types"
"build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types",
"lernaBuildTask": "yarn build"
},
"license": "MIT",
"devDependencies": {
Expand Down
6 changes: 5 additions & 1 deletion packages/codebytes/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"extends": "../../tsconfig.json",
"include": ["../../typings/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"]
"include": ["../../typings/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"],
"compilerOptions": {
"allowJs": true,
"outDir": "./dist"
}
}

0 comments on commit fc0f1c5

Please sign in to comment.