This commit is contained in:
cha0s 2022-02-28 11:18:59 -06:00
parent 5749228c2e
commit cac0cdce2d
32 changed files with 236 additions and 46 deletions

View File

@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Bug Fixes
* sourcemaps for compiled flecks ([e35f87b](https://github.com/cha0s/flecks/commit/e35f87b888e5cee891d6b2b6cca761a0898a2461))
* **core:** compilation uses source babel config and ignores node_modules ([0b0219d](https://github.com/cha0s/flecks/commit/0b0219d09eae6a1f7952af1a751bc77c35ee5591))
### Features
* babel in flecksrc ([dc60217](https://github.com/cha0s/flecks/commit/dc60217bd66d436eac6afe0e6d803f43a354bc6b))
* rich debugging ([545bfce](https://github.com/cha0s/flecks/commit/545bfce1ab602044041b370b413df62ae0cb9363))
* VSCode launch config ([5749228](https://github.com/cha0s/flecks/commit/5749228c2eb3ad22abf8006c90cc0bf3b5fc5865))
* **core/server:** read config from environment ([8ed9648](https://github.com/cha0s/flecks/commit/8ed96484b9cc260b1bc46d8f4cbe621476960d6c))
## [1.0.2](https://github.com/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)

View File

@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "1.0.2"
"version": "1.1.0"
}

View File

@ -0,0 +1,19 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Bug Fixes
* sourcemaps for compiled flecks ([e35f87b](https://git.hq.cha0s.io/cha0s/flecks/commits/e35f87b888e5cee891d6b2b6cca761a0898a2461))
* **core:** compilation uses source babel config and ignores node_modules ([0b0219d](https://git.hq.cha0s.io/cha0s/flecks/commits/0b0219d09eae6a1f7952af1a751bc77c35ee5591))
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
* **core/server:** read config from environment ([8ed9648](https://git.hq.cha0s.io/cha0s/flecks/commits/8ed96484b9cc260b1bc46d8f4cbe621476960d6c))
* babel in flecksrc ([dc60217](https://git.hq.cha0s.io/cha0s/flecks/commits/dc60217bd66d436eac6afe0e6d803f43a354bc6b))

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"version": "1.1.0",
"main": "index.js",
"author": "cha0s",
"license": "MIT",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* VSCode launch config ([5749228](https://git.hq.cha0s.io/cha0s/flecks/commits/5749228c2eb3ad22abf8006c90cc0bf3b5fc5865))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/create-app

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"bin": {
"create-app": "./cli.js"
},
@ -21,10 +21,10 @@
"template"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"fs-extra": "10.0.0"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
**Note:** Version bump only for package @flecks/create-fleck
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/create-fleck

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"bin": {
"create-fleck": "./cli.js"
},
@ -21,11 +21,11 @@
"template"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"fs-extra": "10.0.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/db

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"scripts": {
"build": "flecks build",
"clean": "flecks clean",
@ -18,11 +18,11 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/docker

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -19,10 +19,10 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"debug": "^4.3.3"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* babel in flecksrc ([dc60217](https://git.hq.cha0s.io/cha0s/flecks/commits/dc60217bd66d436eac6afe0e6d803f43a354bc6b))
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/fleck

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"author": "cha0s",
"license": "MIT",
"bin": {
@ -26,7 +26,7 @@
"test.js.map"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"@neutrinojs/node": "^9.4.0",
"babel-merge": "^3.0.0",
"chokidar": "^3.5.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
**Note:** Version bump only for package @flecks/governor
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/governor

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -21,12 +21,12 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/db": "^1.0.2",
"@flecks/core": "^1.1.0",
"@flecks/db": "^1.1.0",
"rate-limiter-flexible": "^2.1.13",
"redis": "^3.1.2"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/http

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -34,7 +34,7 @@
"tests.js.map"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"@neutrinojs/web": "^9.1.0",
"compression": "^1.7.4",
"express": "^4.17.1",
@ -50,7 +50,7 @@
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2",
"@flecks/fleck": "^1.1.0",
"@neutrinojs/copy": "^9.4.0"
}
}

View File

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* babel in flecksrc ([dc60217](https://git.hq.cha0s.io/cha0s/flecks/commits/dc60217bd66d436eac6afe0e6d803f43a354bc6b))
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/react

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -36,7 +36,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"@hot-loader/react-dom": "^17.0.1",
"@neutrinojs/react": "^9.4.0",
"classnames": "^2.3.1",
@ -48,6 +48,6 @@
"redux-first-history": "^5.0.8"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/redis

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"scripts": {
"build": "flecks build",
"clean": "flecks clean",
@ -20,13 +20,13 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"@socket.io/redis-adapter": "7.1.0",
"connect-redis": "^5.0.0",
"express-session": "^1.17.1",
"redis": "4.0.3"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/redux

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -23,7 +23,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"@hot-loader/react-dom": "^17.0.1",
"@reduxjs/toolkit": "^1.5.0",
"debug": "^4.3.3",
@ -32,6 +32,6 @@
"reduce-reducers": "^1.0.4"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/repl

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"scripts": {
"build": "flecks build",
"clean": "flecks clean",
@ -18,11 +18,11 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"command-exists": "^1.2.9",
"debug": "4.3.1"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/server

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
@ -28,7 +28,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"@neutrinojs/banner": "^9.5.0",
"@neutrinojs/node": "^9.4.0",
"@neutrinojs/start-server": "^9.5.0",
@ -37,6 +37,6 @@
"webpack-node-externals": "2.5.2"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/socket

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -23,7 +23,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/core": "^1.1.0",
"msgpack-lite": "^0.1.26",
"proxy-addr": "^2.0.6",
"schemapack": "^1.4.2",
@ -31,6 +31,6 @@
"socket.io-client": "^4.1.2"
},
"devDependencies": {
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}

View File

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
### Features
* babel in flecksrc ([dc60217](https://git.hq.cha0s.io/cha0s/flecks/commits/dc60217bd66d436eac6afe0e6d803f43a354bc6b))
* rich debugging ([545bfce](https://git.hq.cha0s.io/cha0s/flecks/commits/545bfce1ab602044041b370b413df62ae0cb9363))
## [1.0.2](https://git.hq.cha0s.io/cha0s/flecks/compare/v1.0.1...v1.0.2) (2022-02-28)
**Note:** Version bump only for package @flecks/user

View File

@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -29,9 +29,9 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.0.1",
"@flecks/react": "^1.0.2",
"@flecks/redux": "^1.0.2",
"@flecks/core": "^1.1.0",
"@flecks/react": "^1.1.0",
"@flecks/redux": "^1.1.0",
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"express-session": "1.17.1",
@ -40,6 +40,6 @@
},
"devDependencies": {
"@babel/preset-react": "^7.12.10",
"@flecks/fleck": "^1.0.2"
"@flecks/fleck": "^1.1.0"
}
}