1
mirror of https://github.com/jakejarvis/jakejarvis.git synced 2025-04-26 05:25:25 -04:00

bump some deps

This commit is contained in:
Jake Jarvis 2021-11-15 13:03:08 -05:00
parent 2fffdcbd31
commit b8db6d6fb3
Signed by: jake
GPG Key ID: 2B0C9CF251E69A39
4 changed files with 206 additions and 673 deletions

View File

@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v2 - uses: actions/setup-node@v2
with: with:
node-version: 14 node-version: 16.x
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: | - run: yarn install --frozen-lockfile
yarn install --frozen-lockfile working-directory: ./cli
yarn publish - run: yarn publish
working-directory: ./cli working-directory: ./cli
env: env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@ -29,12 +29,12 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v2 - uses: actions/setup-node@v2
with: with:
node-version: 14 node-version: 16.x
registry-url: https://npm.pkg.github.com/ registry-url: https://npm.pkg.github.com/
scope: '@jakejarvis' scope: '@jakejarvis'
- run: | - run: yarn install --frozen-lockfile
yarn install --frozen-lockfile working-directory: ./cli
yarn publish - run: yarn publish
working-directory: ./cli working-directory: ./cli
env: env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -21,7 +21,7 @@ jobs:
fetch-depth: 1 fetch-depth: 1
- uses: actions/setup-node@v2 - uses: actions/setup-node@v2
with: with:
node-version: 14 node-version: 16.x
- run: | - run: |
yarn install --frozen-lockfile yarn install --frozen-lockfile
yarn lint yarn lint

View File

@ -14,16 +14,6 @@
"url": "https://github.com/jakejarvis/jakejarvis.git", "url": "https://github.com/jakejarvis/jakejarvis.git",
"directory": "cli" "directory": "cli"
}, },
"keywords": [
"cli",
"jakejarvis",
"jarvis",
"portfolio",
"useless"
],
"engines": {
"node": ">=10"
},
"files": [ "files": [
"dist" "dist"
], ],
@ -33,27 +23,30 @@
"scripts": { "scripts": {
"build": "node build.js", "build": "node build.js",
"run": "yarn build && node dist/index.js", "run": "yarn build && node dist/index.js",
"prepublishOnly": "yarn build", "lint": "eslint .",
"lint": "eslint ." "prepublishOnly": "yarn build"
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"@babel/core": "^7.16.0", "@babel/core": "^7.16.0",
"@babel/preset-react": "^7.16.0", "@babel/preset-react": "^7.16.0",
"@jakejarvis/eslint-config": "*", "@jakejarvis/eslint-config": "github:jakejarvis/eslint-config#main",
"@vercel/ncc": "^0.31.1", "@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0", "eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0", "eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^10.0.0", "fs-extra": "^10.0.0",
"ink": "^3.2.0", "ink": "^3.2.0",
"ink-big-text": "^1.2.0", "ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0", "ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.0", "ink-select-input": "^4.2.1",
"open": "^8.4.0", "open": "^8.4.0",
"pretty-bytes": "^5.6.0", "pretty-bytes": "^5.6.0",
"react": "^17.0.2" "react": "^17.0.2"
}, },
"engines": {
"node": ">=10"
},
"eslintConfig": { "eslintConfig": {
"extends": [ "extends": [
"@jakejarvis/eslint-config", "@jakejarvis/eslint-config",
@ -78,5 +71,15 @@
"tmp/**", "tmp/**",
"dist/**" "dist/**"
] ]
} },
"volta": {
"node": "16.13.0"
},
"keywords": [
"cli",
"jakejarvis",
"jarvis",
"portfolio",
"useless"
]
} }

File diff suppressed because it is too large Load Diff