Skip to content

Commit

Permalink
Bumped v0.0.6
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <[email protected]>
  • Loading branch information
mcollina committed Mar 5, 2024
1 parent dc22365 commit 0f949d3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "semgrator",
"version": "0.0.5",
"version": "0.0.6",
"description": "Run migrations code based on semantic version rules",
"scripts": {
"test": "borp",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && tsc -p tsconfig.build.json",
"build": "npm run clean && tsc -p tsconfig.build.json",
"lint": "prettier --check .",
"lint:fix": "prettier -w ."
},
Expand Down
1 change: 0 additions & 1 deletion src/semgrator.ts

This file was deleted.

6 changes: 0 additions & 6 deletions test/semgrator.test.ts

This file was deleted.

3 changes: 2 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"exclude": ["test"],
"exclude": ["src/test"],
"compilerOptions": {
"outDir": "dist",
"incremental": false
}
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "dist",
"outDir": "build",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
Expand Down

0 comments on commit 0f949d3

Please sign in to comment.