diff --git a/packages/babel/README.md b/packages/babel/README.md index 1bbc008c..ed5f420f 100644 --- a/packages/babel/README.md +++ b/packages/babel/README.md @@ -1,6 +1,5 @@ @tsbb/typescript === - Github: https://github.com/jaywcjlove/tsbb -Website: http://jaywcjlove.github.io/tsbb \ No newline at end of file +Website: https://jaywcjlove.github.io/tsbb \ No newline at end of file diff --git a/packages/babel/package.json b/packages/babel/package.json index f813f6bb..0a37b260 100644 --- a/packages/babel/package.json +++ b/packages/babel/package.json @@ -3,7 +3,7 @@ "version": "4.0.0-alpha.0", "description": "TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.", "author": "kenny wang ", - "homepage": "http://jaywcjlove.github.io/tsbb", + "homepage": "https://jaywcjlove.github.io/tsbb", "license": "MIT", "type": "module", "types": "./lib/index.d.ts", diff --git a/packages/core/README.md b/packages/core/README.md index 10eb593a..ef376f66 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -2,4 +2,4 @@ === Github: https://github.com/jaywcjlove/tsbb -Website: http://jaywcjlove.github.io/tsbb \ No newline at end of file +Website: https://jaywcjlove.github.io/tsbb \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index cd81b688..a14e0105 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "version": "4.0.0-alpha.0", "description": "TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.", "author": "kenny wang ", - "homepage": "http://jaywcjlove.github.io/tsbb", + "homepage": "https://jaywcjlove.github.io/tsbb", "license": "MIT", "type": "module", "types": "./lib/index.d.ts", diff --git a/packages/jest/README.md b/packages/jest/README.md index 33814a12..8a8efd33 100644 --- a/packages/jest/README.md +++ b/packages/jest/README.md @@ -3,4 +3,4 @@ Github: https://github.com/jaywcjlove/tsbb -Website: http://jaywcjlove.github.io/tsbb \ No newline at end of file +Website: https://jaywcjlove.github.io/tsbb \ No newline at end of file diff --git a/packages/jest/package.json b/packages/jest/package.json index 2bbd09f4..dff6ba7d 100644 --- a/packages/jest/package.json +++ b/packages/jest/package.json @@ -3,7 +3,7 @@ "version": "4.0.0-alpha.0", "description": "TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.", "author": "kenny wang ", - "homepage": "http://jaywcjlove.github.io/tsbb", + "homepage": "https://jaywcjlove.github.io/tsbb", "license": "MIT", "types": "./lib/index.d.ts", "main": "./lib/index.js", diff --git a/packages/tsbb/README.md b/packages/tsbb/README.md index 324d6118..52f3b107 100644 --- a/packages/tsbb/README.md +++ b/packages/tsbb/README.md @@ -50,9 +50,9 @@ $ npm create tsbb my-app -e express $ npx create-tsbb my-app -e koa # npm 6.x -$ npm init tsbb my-app --example express-typeorm +$ npm init tsbb my-app --example typenexus # npm 7+, extra double-dash is needed: -$ npm init tsbb my-app -- --example express-typeorm +$ npm init tsbb my-app -- --example typenexus $ cd my-project @@ -75,7 +75,7 @@ You can download the following examples directly. [Download page](https://jaywcj - [**`Basic`**](https://github.com/jaywcjlove/tsbb/tree/master/example/basic) - The [Node.js](https://nodejs.org/en/) base application example. - [**`Express`**](https://github.com/jaywcjlove/tsbb/tree/master/example/express) - The [Express](https://expressjs.com/) base application example. -- [**`TypeNexus`**](https://github.com/jaywcjlove/tsbb/tree/master/example/express-typeorm) - The [Express](https://expressjs.com/) & [TypeORM](https://github.com/typeorm/typeorm) base application example. +- [**`TypeNexus`**](https://github.com/jaywcjlove/tsbb/tree/master/example/typenexus) - The [Express](https://expressjs.com/) & [TypeORM](https://github.com/typeorm/typeorm) base application example. - [**`Koa`**](https://github.com/jaywcjlove/tsbb/tree/master/example/koa) - The [Koa](https://koajs.com/) base application example. - [**`Hapi`**](https://github.com/jaywcjlove/tsbb/tree/master/example/hapi) - The [Hapi](https://hapijs.com/) base application example. - [**`react-component`**](https://github.com/jaywcjlove/tsbb/tree/master/example/react-component) - The react component base application example. diff --git a/packages/tsbb/package.json b/packages/tsbb/package.json index d0927fb0..c98e79b1 100644 --- a/packages/tsbb/package.json +++ b/packages/tsbb/package.json @@ -3,7 +3,7 @@ "version": "4.0.0-alpha.0", "description": "TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.", "author": "kenny wang ", - "homepage": "http://jaywcjlove.github.io/tsbb", + "homepage": "https://jaywcjlove.github.io/tsbb", "license": "MIT", "type": "module", "types": "./lib/index.d.ts", diff --git a/packages/tsbb/src/index.ts b/packages/tsbb/src/index.ts index 43b48ebf..b72f4913 100644 --- a/packages/tsbb/src/index.ts +++ b/packages/tsbb/src/index.ts @@ -1,2 +1,4 @@ +export * from '@tsbb/babel'; export * from '@tsbb/core'; +export * from '@tsbb/jest'; export * from '@tsbb/typescript'; diff --git a/packages/typescript/README.md b/packages/typescript/README.md index 1bbc008c..ed5f420f 100644 --- a/packages/typescript/README.md +++ b/packages/typescript/README.md @@ -1,6 +1,5 @@ @tsbb/typescript === - Github: https://github.com/jaywcjlove/tsbb -Website: http://jaywcjlove.github.io/tsbb \ No newline at end of file +Website: https://jaywcjlove.github.io/tsbb \ No newline at end of file diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 9b3d973f..39a17438 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -3,7 +3,7 @@ "version": "4.0.0-alpha.0", "description": "TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.", "author": "kenny wang ", - "homepage": "http://jaywcjlove.github.io/tsbb", + "homepage": "https://jaywcjlove.github.io/tsbb", "license": "MIT", "type": "module", "types": "./lib/index.d.ts",