Browse Source

chore(publish): v0.11.16

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/458/head 0.11.16
Pranav C 3 years ago
parent
commit
c8426cdd58
  1. 2
      packages/nc-lib-gui/package.json
  2. 6
      packages/nocodb/package-lock.json
  3. 4
      packages/nocodb/package.json
  4. 5
      packages/nocodb/src/example/docker.ts
  5. 2
      packages/nocodb/src/lib/noco/migrations/nc_001_init.ts

2
packages/nc-lib-gui/package.json

@ -1,6 +1,6 @@
{ {
"name": "nc-lib-gui", "name": "nc-lib-gui",
"version": "0.2.23", "version": "0.2.25",
"description": "> TODO: description", "description": "> TODO: description",
"author": "“pranavxc” <pranavxc@gmail.com>", "author": "“pranavxc” <pranavxc@gmail.com>",
"homepage": "https://gitlab.com/xgenecloud-ts/xgenecloud-ts#readme", "homepage": "https://gitlab.com/xgenecloud-ts/xgenecloud-ts#readme",

6
packages/nocodb/package-lock.json generated

@ -11894,9 +11894,9 @@
} }
}, },
"nc-lib-gui": { "nc-lib-gui": {
"version": "0.2.23", "version": "0.2.25",
"resolved": "https://registry.npmjs.org/nc-lib-gui/-/nc-lib-gui-0.2.23.tgz", "resolved": "https://registry.npmjs.org/nc-lib-gui/-/nc-lib-gui-0.2.25.tgz",
"integrity": "sha512-wJS5gGpBBLcjZafuRYQQdhKum999zmXs+TxHv3MJ5qVsIF497Rve6sL+lYZbWEZkyoYnhHprAMCHpVeLv0cGSA==", "integrity": "sha512-mE2UzijHWCvSO1xTVz32An85ccAqy6p1YdJi0iPK54ym9kqsWkJ7ZZEQLNFs1+U2T85Om1YmCKI9YK+NYMPg/A==",
"requires": { "requires": {
"axios": "^0.19.2", "axios": "^0.19.2",
"body-parser": "^1.19.0", "body-parser": "^1.19.0",

4
packages/nocodb/package.json

@ -1,6 +1,6 @@
{ {
"name": "nocodb", "name": "nocodb",
"version": "0.11.15", "version": "0.11.16",
"description": "xc-cli", "description": "xc-cli",
"main": "dist/bundle.js", "main": "dist/bundle.js",
"repository": "https://github.com/nocodb/nocodb", "repository": "https://github.com/nocodb/nocodb",
@ -146,7 +146,7 @@
"nanoid": "^3.1.20", "nanoid": "^3.1.20",
"nc-common": "0.0.6", "nc-common": "0.0.6",
"nc-help": "^0.2.12", "nc-help": "^0.2.12",
"nc-lib-gui": "^0.2.23", "nc-lib-gui": "^0.2.25",
"nc-plugin": "^0.1.1", "nc-plugin": "^0.1.1",
"nodemailer": "^6.4.10", "nodemailer": "^6.4.10",
"ora": "^4.0.4", "ora": "^4.0.4",

5
packages/nocodb/src/example/docker.ts

@ -20,11 +20,6 @@ server.set('view engine', 'ejs');
process.env[`DEBUG`] = 'xc*'; process.env[`DEBUG`] = 'xc*';
// process.env[`NC_ONE_CLICK`] = 'true';
// process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"
//
(async () => { (async () => {
server.use(await Noco.init({})); server.use(await Noco.init({}));
server.listen(process.env.PORT || 8080, () => { server.listen(process.env.PORT || 8080, () => {

2
packages/nocodb/src/lib/noco/migrations/nc_001_init.ts

@ -16,7 +16,7 @@ import ses from "../plugins/ses";
const up = async (knex) => { const up = async (knex) => {
await knex.schema.createTable('nc_projects', table => { await knex.schema.createTable('nc_projects', table => {
table.string('id', 191).primary(); table.string('id', 128).primary();
table.string('title'); table.string('title');
table.string('status'); table.string('status');
table.text('description'); table.text('description');

Loading…
Cancel
Save