Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinschaich authored Dec 30, 2022
2 parents 8dbbc12 + 8b97b7c commit 758c9f8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm list --depth=1
- run: npm test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Mintable helps you:

<br>

[![](https://img.shields.io/github/workflow/status/kevinschaich/mintable/Test)](https://github.com/kevinschaich/mintable/actions?query=workflow%3ATest)
[![](https://img.shields.io/github/actions/workflow/status/kevinschaich/mintable/test.yml?branch=master)](https://github.com/kevinschaich/mintable/actions?query=workflow%3ATest)
[![](https://img.shields.io/npm/v/mintable)](https://www.npmjs.com/package/mintable)
[![](https://img.shields.io/github/release/kevinschaich/mintable.svg)](https://github.com/kevinschaich/mintable/releases)
[![](https://img.shields.io/github/license/kevinschaich/mintable.svg)](https://github.com/kevinschaich/mintable/blob/master/LICENSE)
Expand Down
5 changes: 5 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,11 @@ npm run watch
To publish a new version, increment `version` in `package.json` and run:

```bash
git add package.json
git commit -m 'vX.X.X'
git push
rm -rf lib/
npm run build
npm publish
```
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mintable",
"author": "Kevin Schaich <[email protected]> (http://kevinschaich.io)",
"license": "MIT",
"version": "2.0.1",
"version": "2.0.3",
"bin": "./lib/scripts/cli.js",
"preferGlobal": true,
"scripts": {
Expand All @@ -20,9 +20,10 @@
],
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.3",
"@types/express": "4.17.3",
"@types/express-serve-static-core": "4.17.28",
"@types/glob": "^7.1.2",
"@types/lodash": "^4.14.149",
"@types/lodash": "4.14.149",
"@types/node": "^14.0.13",
"@types/prompts": "^2.0.3",
"ajv": "^6.12.0",
Expand All @@ -31,15 +32,15 @@
"csv-parse": "^4.10.1",
"csv-stringify": "^5.5.0",
"date-fns": "^2.10.0",
"express": "^4.17.1",
"express": "4.17.3",
"glob": "^7.1.6",
"googleapis": "47.0.0",
"jsonc": "^2.0.0",
"lodash": "^4.17.15",
"lodash": "4.17.15",
"open": "^7.0.2",
"plaid": "^12.0.0",
"prompts": "^2.3.1",
"typescript": "^3.8.3",
"typescript": "3.8.3",
"typescript-json-schema": "^0.42.0",
"yargs": "^15.1.0"
},
Expand Down
3 changes: 2 additions & 1 deletion src/integrations/google/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export default async () => {
)
console.log('\n\t1. Create a new Google Sheet (https://sheets.new)')
console.log('\t2. Follow the guide here: https://developers.google.com/workspace/guides/create-credentials#desktop-app')
console.log('\t3. Answer the following questions:\n')
console.log(`\t3. Make sure your app's Publishing Status is 'Testing', and add your Gmail account you wish to use as a Test User here: https://console.cloud.google.com/apis/credentials/consent`)
console.log('\t4. Answer the following questions:\n')

const credentials = await prompts([
{
Expand Down

0 comments on commit 758c9f8

Please sign in to comment.