This commit is contained in:
cha0s 2022-02-28 12:03:04 -06:00
parent aa245f1ff0
commit 6ad2abd18c
32 changed files with 204 additions and 76 deletions

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/monorepo
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

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

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/core
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/core",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/core"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"author": "cha0s",
"license": "MIT",

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/create-app
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/create-app",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/create-app"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"bin": {
"create-app": "./cli.js"
},
@ -26,10 +26,10 @@
"template"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"fs-extra": "10.0.0"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/create-fleck
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
**Note:** Version bump only for package @flecks/create-fleck

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/create-fleck",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/create-fleck"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"bin": {
"create-fleck": "./cli.js"
},
@ -26,11 +26,11 @@
"template"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"fs-extra": "10.0.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/db
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/db",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/db"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"build": "flecks build",
"clean": "flecks clean",
@ -23,11 +23,11 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/docker
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/docker",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/docker"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -24,10 +24,10 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"debug": "^4.3.3"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/fleck
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/fleck",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/fleck"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"author": "cha0s",
"license": "MIT",
"bin": {
@ -31,7 +31,7 @@
"test.js.map"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"@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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/governor
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)
**Note:** Version bump only for package @flecks/governor

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/governor",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/governor"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -26,12 +26,12 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/db": "^1.1.0",
"@flecks/core": "^1.1.1",
"@flecks/db": "^1.1.1",
"rate-limiter-flexible": "^2.1.13",
"redis": "^3.1.2"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/http
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/http",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/http"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -39,7 +39,7 @@
"tests.js.map"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"@neutrinojs/web": "^9.1.0",
"compression": "^1.7.4",
"express": "^4.17.1",
@ -55,7 +55,7 @@
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0",
"@flecks/fleck": "^1.1.1",
"@neutrinojs/copy": "^9.4.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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/react
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/react",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/react"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -41,7 +41,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"@hot-loader/react-dom": "^17.0.1",
"@neutrinojs/react": "^9.4.0",
"classnames": "^2.3.1",
@ -53,6 +53,6 @@
"redux-first-history": "^5.0.8"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/redis
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/redis",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/redis"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"build": "flecks build",
"clean": "flecks clean",
@ -25,13 +25,13 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"@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.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/redux
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/redux",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/redux"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -28,7 +28,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"@hot-loader/react-dom": "^17.0.1",
"@reduxjs/toolkit": "^1.5.0",
"debug": "^4.3.3",
@ -37,6 +37,6 @@
"reduce-reducers": "^1.0.4"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/repl
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/repl",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/repl"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"build": "flecks build",
"clean": "flecks clean",
@ -23,11 +23,11 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"command-exists": "^1.2.9",
"debug": "4.3.1"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/server
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/server",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/server"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"license": "MIT",
"scripts": {
@ -33,7 +33,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"@neutrinojs/banner": "^9.5.0",
"@neutrinojs/node": "^9.4.0",
"@neutrinojs/start-server": "^9.5.0",
@ -42,6 +42,6 @@
"webpack-node-externals": "2.5.2"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/socket
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/socket",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/socket"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -28,7 +28,7 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/core": "^1.1.1",
"msgpack-lite": "^0.1.26",
"proxy-addr": "^2.0.6",
"schemapack": "^1.4.2",
@ -36,6 +36,6 @@
"socket.io-client": "^4.1.2"
},
"devDependencies": {
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}

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.1](https://github.com/cha0s/flecks/compare/v1.1.0...v1.1.1) (2022-02-28)
**Note:** Version bump only for package @flecks/user
# [1.1.0](https://github.com/cha0s/flecks/compare/v1.0.2...v1.1.0) (2022-02-28)

View File

@ -1,14 +1,14 @@
{
"name": "@flecks/user",
"repository": {
"type" : "git",
"url" : "https://github.com/cha0s/flecks.git",
"type": "git",
"url": "https://github.com/cha0s/flecks.git",
"directory": "packages/user"
},
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "flecks build",
@ -34,9 +34,9 @@
"src"
],
"dependencies": {
"@flecks/core": "^1.1.0",
"@flecks/react": "^1.1.0",
"@flecks/redux": "^1.1.0",
"@flecks/core": "^1.1.1",
"@flecks/react": "^1.1.1",
"@flecks/redux": "^1.1.1",
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"express-session": "1.17.1",
@ -45,6 +45,6 @@
},
"devDependencies": {
"@babel/preset-react": "^7.12.10",
"@flecks/fleck": "^1.1.0"
"@flecks/fleck": "^1.1.1"
}
}