-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efa0bcd
commit b2a9d88
Showing
21 changed files
with
72 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@powership/boilerplate", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"main": "out/index.js", | ||
"module": "out/module/index.js", | ||
"author": "antoniopresto <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "@powership/entity", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"main": "out/index.js", | ||
"module": "out/module/index.js", | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"scripts": { | ||
"test": "jest --runInBand", | ||
"test": "jest", | ||
"build": "run-s clear && run-p declarations build:*", | ||
"clear": "rimraf out", | ||
"fix": "run-s fix:* ", | ||
|
@@ -18,7 +18,7 @@ | |
"build:node": "TARGET=node npm run babild -- --out-dir out", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx'" | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__tests__'" | ||
}, | ||
"description": "Powership db", | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@powership/helpers", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"main": "out/index.js", | ||
"module": "out/module/index.js", | ||
"author": "antoniopresto <[email protected]>", | ||
|
@@ -15,10 +15,11 @@ | |
"fix:lint": "eslint src --ext .ts --fix", | ||
"prepublishOnly": "run-s build fix && run-p test", | ||
"build-targets": "run-p build:*", | ||
"build:module-browser": "TARGET=module-browser npm run babild -- --out-dir out/browser/module", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx'" | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__tests__'" | ||
}, | ||
"description": "Powership server-utils", | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "logstorm", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"typings": "out", | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -18,8 +18,8 @@ | |
"build-targets": "run-p build:*", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module", | ||
"declarations": "tsc -p tsconfig.json", | ||
"babild": "babel 'src' --extensions '.ts' --source-maps=true --ignore '**/__tests__'" | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__tests__'" | ||
}, | ||
"description": "run command in each package", | ||
"keywords": [], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "./tsconfig.prod.json", | ||
"compilerOptions": { | ||
"emitDeclarationOnly": true | ||
}, | ||
"exclude": [ | ||
"node_modules/**" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"extends": "./tsconfig", | ||
"compilerOptions": { | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true | ||
}, | ||
"exclude": ["node_modules/**"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"extends": "./tsconfig", | ||
"extends": "./tsconfig.prod.json", | ||
"compilerOptions": { | ||
"target": "esnext", | ||
"outDir": "out/module", | ||
"module": "esnext" | ||
"module": "esnext", | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true | ||
}, | ||
"exclude": [ | ||
"node_modules/**" | ||
"node_modules/**", // | ||
"**/*/__tests__/*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"extends": "./tsconfig", | ||
"compilerOptions": { | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true | ||
}, | ||
"exclude": [ | ||
"node_modules/**", | ||
"**/*/__tests__/*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@powership/mongo", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"main": "out/index.js", | ||
"module": "out/module/index.js", | ||
"author": "antoniopresto <[email protected]>", | ||
|
@@ -18,7 +18,7 @@ | |
"build:node": "TARGET=node npm run babild -- --out-dir out", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx'" | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__tests__'" | ||
}, | ||
"description": "Powership mongo", | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "runmate", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"typings": "out", | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -22,8 +22,8 @@ | |
"build-targets": "run-p build:*", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module", | ||
"declarations": "tsc -p tsconfig.json", | ||
"babild": "babel 'src' --extensions '.ts' --source-maps=true --ignore '**/__tests__'" | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__tests__'" | ||
}, | ||
"description": "run command in each package", | ||
"keywords": [], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "@powership/transporter", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"main": "out/index.js", | ||
"sideEffects": false, | ||
"module": "out/module/index.js", | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "jest --runInBand", | ||
"test": "jest", | ||
"build": "run-s clear && run-p declarations build:*", | ||
"clear": "rimraf out", | ||
"fix": "run-s fix:* ", | ||
|
@@ -18,7 +18,7 @@ | |
"build:node": "TARGET=node npm run babild -- --out-dir out", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx'" | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__tests__'" | ||
}, | ||
"description": "Powership db", | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@powership/utils", | ||
"version": "2.3.1-beta.3", | ||
"version": "2.3.1", | ||
"typings": "out", | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters