-
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
7379068
commit da2008d
Showing
60 changed files
with
212 additions
and
280 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
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 +1 @@ | ||
module.exports = require('../../.eslintrc') | ||
module.exports = require('../../.eslintrc.cjs') |
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,10 +1,9 @@ | ||
{ | ||
"name": "@powership/boilerplate", | ||
"version": "2.3.2", | ||
"main": "out/index.js", | ||
"module": "out/module/index.js", | ||
"version": "3.1.2", | ||
"author": "antoniopresto <[email protected]>", | ||
"sideEffects": false, | ||
"type": "module", | ||
"scripts": { | ||
"clear": "rimraf dist", | ||
"fix": "run-s fix:* ", | ||
|
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
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,12 +1,12 @@ | ||
{ | ||
"name": "@powership/deepstate", | ||
"version": "2.3.2", | ||
"version": "3.1.2", | ||
"main": "out/index.js", | ||
"module": "out/module/index.js", | ||
"module": "out/module/index.mjs", | ||
"sideEffects": false, | ||
"browser": { | ||
"out/module/index.js": "./out/browser/module/index.js", | ||
"out/index.js": "./out/browser/index.js" | ||
"out/module/index.mjs": "./out/browser/module/index.mjs", | ||
"out/index.cjs": "./out/browser/index.cjs" | ||
}, | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MPL-2.0", | ||
|
@@ -20,10 +20,10 @@ | |
"fix:lint": "eslint src --ext .ts --fix", | ||
"prepublishOnly": "run-p build fix && run-p test", | ||
"build-targets": "run-p build:*", | ||
"build:browser": "TARGET=browser npm run babild -- --out-dir out/browser", | ||
"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", | ||
"build:browser": "TARGET=browser npm run babild -- --out-dir out/browser --out-file-extension .cjs", | ||
"build:module-browser": "TARGET=module-browser npm run babild -- --out-dir out/browser/module --out-file-extension .mjs", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out --out-file-extension .cjs", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module --out-file-extension .mjs", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
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,14 +1,16 @@ | ||
{ | ||
"name": "@powership/entity", | ||
"version": "2.3.2", | ||
"version": "3.1.2", | ||
"type": "module", | ||
"main": "./out/index.js", | ||
"module": "./out/module/index.js", | ||
"main": "./out/index.cjs", | ||
"module": "./out/module/index.mjs", | ||
"types": "./out/index.d.ts", | ||
"exports": { | ||
"types": "./out/index.d.ts", | ||
"import": "./out/module/index.js", | ||
"require": "./out/index.js" | ||
".": { | ||
"types": "./out/index.d.ts", | ||
"import": "./out/module/index.mjs", | ||
"require": "./out/index.cjs" | ||
} | ||
}, | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -22,8 +24,10 @@ | |
"fix:lint": "eslint src --ext .ts --fix", | ||
"prepublishOnly": "run-s build fix && run-p test", | ||
"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", | ||
"build:browser": "TARGET=browser npm run babild -- --out-dir out/browser --out-file-extension .cjs", | ||
"build:module-browser": "TARGET=module-browser npm run babild -- --out-dir out/browser/module --out-file-extension .mjs", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out --out-file-extension .cjs", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module --out-file-extension .mjs", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__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
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
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
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,18 +1,20 @@ | ||
{ | ||
"name": "@powership/helpers", | ||
"version": "2.3.2", | ||
"version": "3.1.2", | ||
"type": "module", | ||
"main": "./out/index.js", | ||
"module": "./out/module/index.js", | ||
"main": "./out/index.cjs", | ||
"module": "./out/module/index.mjs", | ||
"types": "./out/index.d.ts", | ||
"exports": { | ||
"types": "./out/index.d.ts", | ||
"import": "./out/module/index.js", | ||
"require": "./out/index.js" | ||
".": { | ||
"types": "./out/index.d.ts", | ||
"import": "./out/module/index.mjs", | ||
"require": "./out/index.cjs" | ||
} | ||
}, | ||
"browser": { | ||
"out/module/index.js": "./out/browser/module/index.js", | ||
"out/index.js": "./out/browser/index.js" | ||
"out/module/index.mjs": "./out/browser/module/index.mjs", | ||
"out/index.cjs": "./out/browser/index.cjs" | ||
}, | ||
"author": "antoniopresto <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -26,9 +28,10 @@ | |
"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", | ||
"build:browser": "TARGET=browser npm run babild -- --out-dir out/browser --out-file-extension .cjs", | ||
"build:module-browser": "TARGET=module-browser npm run babild -- --out-dir out/browser/module --out-file-extension .mjs", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out --out-file-extension .cjs", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module --out-file-extension .mjs", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
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,20 +1,22 @@ | ||
{ | ||
"name": "logstorm", | ||
"version": "2.3.2", | ||
"version": "3.1.2", | ||
"typings": "out", | ||
"author": "antoniopresto <[email protected]>", | ||
"type": "module", | ||
"main": "./out/index.js", | ||
"module": "./out/module/index.js", | ||
"main": "./out/index.cjs", | ||
"module": "./out/module/index.mjs", | ||
"types": "./out/index.d.ts", | ||
"exports": { | ||
"types": "./out/index.d.ts", | ||
"import": "./out/module/index.js", | ||
"require": "./out/index.js" | ||
".": { | ||
"types": "./out/index.d.ts", | ||
"import": "./out/module/index.mjs", | ||
"require": "./out/index.cjs" | ||
} | ||
}, | ||
"browser": { | ||
"out/module/index.js": "./out/browser/module/index.js", | ||
"out/index.js": "./out/browser/index.js" | ||
"out/module/index.mjs": "./out/browser/module/index.mjs", | ||
"out/index.cjs": "./out/browser/index.cjs" | ||
}, | ||
"sideEffects": false, | ||
"license": "MIT", | ||
|
@@ -27,8 +29,10 @@ | |
"clear": "rimraf out", | ||
"prepublishOnly": "run-s build fix && run-p test", | ||
"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", | ||
"build:browser": "TARGET=browser npm run babild -- --out-dir out/browser --out-file-extension .cjs", | ||
"build:module-browser": "TARGET=module-browser npm run babild -- --out-dir out/browser/module --out-file-extension .mjs", | ||
"build:node": "TARGET=node npm run babild -- --out-dir out --out-file-extension .cjs", | ||
"build:module-node": "TARGET=module-node npm run babild -- --out-dir out/module --out-file-extension .mjs", | ||
"declarations": "tsc -p tsconfig.declarations.json", | ||
"babild": "babel 'src' --extensions '.ts,.tsx' --source-maps=true --ignore '**/__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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/babel-config') | ||
module.exports = require('@powership/boilerplate/babel-config.cjs') |
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 +1 @@ | ||
module.exports = require('@powership/boilerplate/eslintrc') | ||
module.exports = require('@powership/boilerplate/eslintrc.cjs') |
Oops, something went wrong.