Skip to content

Commit

Permalink
chore: add funding field to package.json (#1499)
Browse files Browse the repository at this point in the history
  • Loading branch information
armano2 authored and bradzacher committed Jan 23, 2020
1 parent 101b34a commit 56acddd
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -16,6 +16,7 @@ jobs:
# This also runs a build as part of the postinstall
# bootstrap
yarn --ignore-engines --frozen-lockfile
yarn check-clean-workspace-after-install
- script: |
# Note that this command *also* typechecks tests/tools,
Expand Down Expand Up @@ -68,6 +69,7 @@ jobs:
# This also runs a build as part of the postinstall
# bootstrap
yarn --ignore-engines --frozen-lockfile
yarn check-clean-workspace-after-install
- script: |
yarn test
Expand All @@ -91,6 +93,7 @@ jobs:
# This also runs a build as part of the postinstall
# bootstrap
yarn --ignore-engines --frozen-lockfile
yarn check-clean-workspace-after-install
- script: |
npm config set //registry.npmjs.org/:_authToken=$(NPM_TOKEN)
Expand Down
7 changes: 1 addition & 6 deletions package.json
Expand Up @@ -32,7 +32,7 @@
"lint-fix": "eslint . --ext .js,.ts --fix",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn format-check",
"postinstall": "lerna bootstrap && yarn build && lerna link && npm run check-clean-workspace-after-install && opencollective-postinstall",
"postinstall": "lerna bootstrap && yarn build && lerna link",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"test": "lerna run test --concurrency 1",
"typecheck": "lerna run typecheck"
Expand Down Expand Up @@ -70,17 +70,12 @@
"jest": "^24.9.0",
"lerna": "^3.20.2",
"lint-staged": "^9.4.3",
"opencollective-postinstall": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^24.0.0",
"ts-node": "^8.5.0",
"tslint": "^5.20.1",
"typescript": ">=3.2.1 <3.8.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"resolutions": {
"typescript": "^3.7.2"
}
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-plugin/package.json
Expand Up @@ -63,5 +63,9 @@
"typescript": {
"optional": true
}
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
}
4 changes: 4 additions & 0 deletions packages/experimental-utils/package.json
Expand Up @@ -45,5 +45,9 @@
},
"devDependencies": {
"typescript": "*"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
}
4 changes: 4 additions & 0 deletions packages/parser/package.json
Expand Up @@ -56,5 +56,9 @@
"typescript": {
"optional": true
}
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
}
4 changes: 4 additions & 0 deletions packages/typescript-estree/package.json
Expand Up @@ -66,5 +66,9 @@
"typescript": {
"optional": true
}
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
}

0 comments on commit 56acddd

Please sign in to comment.