Compare commits

..

3 Commits

Author SHA1 Message Date
01ed3e9aaf v0.0.1
All checks were successful
continuous-integration/drone/push Build is passing
2020-01-10 13:52:33 +01:00
b32ad46bd5 Add .travis-ci.yml 2020-01-10 13:46:21 +01:00
e7fadd5e08 Add MIT license to all package.jsons 2020-01-10 13:46:10 +01:00
31 changed files with 99 additions and 78 deletions

9
.travis-ci.yml Normal file
View File

@ -0,0 +1,9 @@
language: node_js
node_js:
- "12"
script:
- npm run lint
- npm run bootstrap
- npm run compile:lib
- npm run test:ci
- npm run compile:esm

View File

@ -2,5 +2,5 @@
"packages": [ "packages": [
"packages/*" "packages/*"
], ],
"version": "0.0.0" "version": "0.0.1"
} }

View File

@ -140,5 +140,8 @@
"uglifyify": "^5.0.2", "uglifyify": "^5.0.2",
"watchify": "^3.11.1" "watchify": "^3.11.1"
}, },
"name": "node" "name": "rondo-framework",
"license": "MIT",
"repository": "https://github.com/rondomoon/rondo-framework",
"version": "0.0.0"
} }

View File

@ -1,16 +1,15 @@
{ {
"name": "@rondo.dev/argparse", "name": "@rondo.dev/argparse",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/argparse",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
"compile": "tsc", "compile": "tsc",
"clean": "rm -rf lib/" "clean": "rm -rf lib/"
}, },
"dependencies": {},
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"devDependencies": {},
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js" "module": "esm/index.js"
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/captcha", "name": "@rondo.dev/captcha",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/captcha",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -24,4 +25,4 @@
"express-session": "^1.17.0", "express-session": "^1.17.0",
"supertest": "^4.0.2" "supertest": "^4.0.2"
} }
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/client", "name": "@rondo.dev/client",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/client",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"peerDependencies": { "peerDependencies": {
"axios": "^0.19.0", "axios": "^0.19.0",
"react": "^16.7.0", "react": "^16.7.0",
@ -32,4 +33,4 @@
"@rondo.dev/test-utils": "file:../test-utils", "@rondo.dev/test-utils": "file:../test-utils",
"react-dom": "^16.11.0" "react-dom": "^16.11.0"
} }
} }

View File

@ -1,13 +1,13 @@
{ {
"name": "@rondo.dev/common", "name": "@rondo.dev/common",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/common",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"dependencies": { "dependencies": {
"@rondo.dev/jsonrpc": "file:../jsonrpc", "@rondo.dev/jsonrpc": "file:../jsonrpc",
"ts-transformer-keys": "^0.3.5" "ts-transformer-keys": "^0.3.5"
}, }
"devDependencies": {} }
}

View File

@ -30,5 +30,6 @@
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
} }
} },
"version": "0.0.1"
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/config", "name": "@rondo.dev/config",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/config",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -14,6 +15,5 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"module": "esm/index.js", "module": "esm/index.js"
"devDependencies": {} }
}

View File

@ -1,4 +1,5 @@
{ {
"name": "@rondo.dev/db-typeorm", "name": "@rondo.dev/db-typeorm",
"lockfileVersion": 1 "lockfileVersion": 1,
"version": "0.0.1"
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/db-typeorm", "name": "@rondo.dev/db-typeorm",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/db-typeorm",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -17,6 +18,5 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts"
"devDependencies": {} }
}

View File

@ -1,4 +1,5 @@
{ {
"name": "@rondo.dev/db", "name": "@rondo.dev/db",
"lockfileVersion": 1 "lockfileVersion": 1,
"version": "0.0.1"
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/db", "name": "@rondo.dev/db",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/db",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -13,6 +14,5 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts"
"devDependencies": {} }
}

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/http-client", "name": "@rondo.dev/http-client",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/http-client",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -18,4 +19,4 @@
"devDependencies": { "devDependencies": {
"@rondo.dev/test-utils": "file:../test-utils" "@rondo.dev/test-utils": "file:../test-utils"
} }
} }

View File

@ -1,16 +1,15 @@
{ {
"name": "@rondo.dev/http-types", "name": "@rondo.dev/http-types",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/http-types",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
"compile": "tsc", "compile": "tsc",
"clean": "rm -rf lib/" "clean": "rm -rf lib/"
}, },
"dependencies": {},
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts"
"devDependencies": {} }
}

View File

@ -1,14 +1,13 @@
{ {
"name": "@rondo.dev/image-upload", "name": "@rondo.dev/image-upload",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/image-upload",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"peerDependencies": { "peerDependencies": {
"react": "^16.7.0", "react": "^16.7.0",
"react-dom": "^16.7.0" "react-dom": "^16.7.0"
}, },
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"module": "esm/index.js", "module": "esm/index.js"
"dependencies": {}, }
"devDependencies": {}
}

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/jsonrpc", "name": "@rondo.dev/jsonrpc",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/jsonrpc",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -24,4 +25,4 @@
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"module": "esm/index.js" "module": "esm/index.js"
} }

View File

@ -1,18 +1,18 @@
{ {
"name": "@rondo.dev/logger", "name": "@rondo.dev/logger",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/logger",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
"compile": "tsc", "compile": "tsc",
"clean": "rm -rf lib/" "clean": "rm -rf lib/"
}, },
"dependencies": {},
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"devDependencies": { "devDependencies": {
"std-mocks": "^1.0.1" "std-mocks": "^1.0.1"
} }
} }

View File

@ -1,4 +1,5 @@
{ {
"name": "@rondo.dev/middleware", "name": "@rondo.dev/middleware",
"lockfileVersion": 1 "lockfileVersion": 1,
"version": "0.0.1"
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/middleware", "name": "@rondo.dev/middleware",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/middleware",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -17,4 +18,4 @@
"devDependencies": { "devDependencies": {
"supertest": "^4.0.2" "supertest": "^4.0.2"
} }
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/react-captcha", "name": "@rondo.dev/react-captcha",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/react-captcha",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -18,4 +19,4 @@
"@rondo.dev/react-test": "file:../react-test", "@rondo.dev/react-test": "file:../react-test",
"react-dom": "^16.11.0" "react-dom": "^16.11.0"
} }
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/react-test", "name": "@rondo.dev/react-test",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/react-test",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -18,6 +19,5 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts"
"devDependencies": {} }
}

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/redux", "name": "@rondo.dev/redux",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/redux",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -21,4 +22,4 @@
"react": "^16.11.0", "react": "^16.11.0",
"react-dom": "^16.11.0" "react-dom": "^16.11.0"
} }
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/rondo-cli", "name": "@rondo.dev/rondo-cli",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/rondo-cli",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -19,7 +20,6 @@
"typescript": "^3.6.4" "typescript": "^3.6.4"
}, },
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"devDependencies": {},
"module": "esm/index.js", "module": "esm/index.js",
"main": "lib/index.js" "main": "lib/index.js"
} }

View File

@ -2,6 +2,7 @@
"name": "@rondo.dev/package", "name": "@rondo.dev/package",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"license": "UNLICENSED",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",

View File

@ -9829,5 +9829,6 @@
"integrity": "sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=", "integrity": "sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=",
"dev": true "dev": true
} }
} },
"version": "0.0.1"
} }

View File

@ -1,7 +1,8 @@
{ {
"name": "@rondo.dev/server", "name": "@rondo.dev/server",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/server",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
@ -53,6 +54,5 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"module": "esm/index.js", "module": "esm/index.js"
"devDependencies": {} }
}

View File

@ -1,18 +1,18 @@
{ {
"name": "@rondo.dev/tasq", "name": "@rondo.dev/tasq",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/tasq",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
"compile": "tsc", "compile": "tsc",
"clean": "rm -rf lib/" "clean": "rm -rf lib/"
}, },
"dependencies": {},
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"devDependencies": { "devDependencies": {
"@rondo.dev/test-utils": "file:../test-utils" "@rondo.dev/test-utils": "file:../test-utils"
}, },
"module": "esm/index.js", "module": "esm/index.js",
"main": "lib/index.js" "main": "lib/index.js"
} }

View File

@ -1,16 +1,15 @@
{ {
"name": "@rondo.dev/test-utils", "name": "@rondo.dev/test-utils",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/test-utils",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
"compile": "tsc", "compile": "tsc",
"clean": "rm -rf lib/" "clean": "rm -rf lib/"
}, },
"dependencies": {},
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts"
"devDependencies": {} }
}

View File

@ -1,4 +1,5 @@
{ {
"name": "@rondo.dev/validator", "name": "@rondo.dev/validator",
"lockfileVersion": 1 "lockfileVersion": 1,
"version": "0.0.1"
} }

View File

@ -1,16 +1,15 @@
{ {
"name": "@rondo.dev/validator", "name": "@rondo.dev/validator",
"repository": "https://github.com/rondomoon/rondo-framework/tree/master/packages/validator",
"version": "0.0.1", "version": "0.0.1",
"private": true, "license": "MIT",
"scripts": { "scripts": {
"test": "jest", "test": "jest",
"lint": "tslint --project .", "lint": "tslint --project .",
"compile": "tsc", "compile": "tsc",
"clean": "rm -rf lib/" "clean": "rm -rf lib/"
}, },
"dependencies": {},
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts"
"devDependencies": {} }
}