Browse Source

💚 fix ci using node 14

master
Nicolas Beaussart 5 years ago
parent
commit
d298ccd157
  1. 10
      .circleci/config.yml
  2. 12
      README.md
  3. 1
      tsconfig.json
  4. 3331
      yarn.lock

10
.circleci/config.yml

@ -14,9 +14,9 @@ commands:
name: Install dependencies name: Install dependencies
command: yarn command: yarn
jobs: jobs:
node-latest: &test
node-14: &test
docker: docker:
- image: circleci/node:latest
- image: circleci/node:14
working_directory: ~/cli working_directory: ~/cli
steps: steps:
- setup_deps - setup_deps
@ -65,13 +65,13 @@ jobs:
- setup_deps - setup_deps
- run: - run:
name: release name: release
command: yarn release || true
command: yarn release
workflows: workflows:
version: 2 version: 2
nbx: nbx:
jobs: jobs:
- node-latest
- node-14
- node-12 - node-12
- prettier - prettier
- lint - lint
@ -83,7 +83,7 @@ workflows:
only: master only: master
- release: - release:
requires: requires:
- node-latest
- node-14
- node-12 - node-12
- lint - lint
- prettier - prettier

12
README.md

@ -29,7 +29,7 @@ $ npm install -g @beaussan/nbx
$ nbx COMMAND $ nbx COMMAND
running command... running command...
$ nbx (-v|--version|version) $ nbx (-v|--version|version)
@beaussan/nbx/2.6.0 linux-x64 node-v15.0.1
@beaussan/nbx/2.7.0 linux-x64 node-v15.12.0
$ nbx --help [COMMAND] $ nbx --help [COMMAND]
USAGE USAGE
$ nbx COMMAND $ nbx COMMAND
@ -69,7 +69,7 @@ EXAMPLES
$ nbx add:dep chalk $ nbx add:dep chalk
``` ```
_See code: [src/commands/add/dep.ts](https://github.com/beaussan/nbx/blob/v2.6.0/src/commands/add/dep.ts)_
_See code: [src/commands/add/dep.ts](https://github.com/beaussan/nbx/blob/v2.7.0/src/commands/add/dep.ts)_
## `nbx add:prettier` ## `nbx add:prettier`
@ -86,7 +86,7 @@ OPTIONS
--[no-]spinner Enable spinner in cli output, true by default --[no-]spinner Enable spinner in cli output, true by default
``` ```
_See code: [src/commands/add/prettier.ts](https://github.com/beaussan/nbx/blob/v2.6.0/src/commands/add/prettier.ts)_
_See code: [src/commands/add/prettier.ts](https://github.com/beaussan/nbx/blob/v2.7.0/src/commands/add/prettier.ts)_
## `nbx add:tailwind` ## `nbx add:tailwind`
@ -102,7 +102,7 @@ OPTIONS
--[no-]spinner Enable spinner in cli output, true by default --[no-]spinner Enable spinner in cli output, true by default
``` ```
_See code: [src/commands/add/tailwind.ts](https://github.com/beaussan/nbx/blob/v2.6.0/src/commands/add/tailwind.ts)_
_See code: [src/commands/add/tailwind.ts](https://github.com/beaussan/nbx/blob/v2.7.0/src/commands/add/tailwind.ts)_
## `nbx help [COMMAND]` ## `nbx help [COMMAND]`
@ -119,7 +119,7 @@ OPTIONS
--all see all commands in CLI --all see all commands in CLI
``` ```
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.0/src/commands/help.ts)_
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.2/src/commands/help.ts)_
## `nbx wall TERMS` ## `nbx wall TERMS`
@ -148,7 +148,7 @@ EXAMPLE
$ nbx wall -r "cat" -o "wall.jpg" -fg $ nbx wall -r "cat" -o "wall.jpg" -fg
``` ```
_See code: [src/commands/wall/index.ts](https://github.com/beaussan/nbx/blob/v2.6.0/src/commands/wall/index.ts)_
_See code: [src/commands/wall/index.ts](https://github.com/beaussan/nbx/blob/v2.7.0/src/commands/wall/index.ts)_
<!-- commandsstop --> <!-- commandsstop -->
## Contributors ✨ ## Contributors ✨

1
tsconfig.json

@ -2,6 +2,7 @@
"compilerOptions": { "compilerOptions": {
"declaration": true, "declaration": true,
"importHelpers": true, "importHelpers": true,
"skipLibCheck": true,
"module": "commonjs", "module": "commonjs",
"outDir": "lib", "outDir": "lib",
"rootDir": "src", "rootDir": "src",

3331
yarn.lock
File diff suppressed because it is too large
View File

Loading…
Cancel
Save