Skip to content

Commit

Permalink
Misc release & tooling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fbartho committed Oct 26, 2022
1 parent 4d5ba8b commit 5b7e8ba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 24 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### v0.next

### v0.9.0

* Feature: Pass context to typePatcher to make it possible to extract args from the URL for use when patching [#260](https://github.com/apollographql/apollo-link-rest/pull/260) [#261](https://github.com/apollographql/apollo-link-rest/pull/261)
* Feature: Allow per-request field-name normalization for symmetry with de-normalization [#253](https://github.com/apollographql/apollo-link-rest/pull/253)
* Improvement: Use globalThis instead of global [#293](https://github.com/apollographql/apollo-link-rest/pull/293)
Expand Down
23 changes: 0 additions & 23 deletions appveyor.yml

This file was deleted.

5 changes: 4 additions & 1 deletion dangerfile.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Removed import
import danger from 'danger';
import { includes } from 'lodash';
import * as fs from 'fs';

Expand Down Expand Up @@ -57,7 +58,9 @@ const raiseIssueAboutPaths = (
};

const authors = commits.map(x => x.author.login);
const isBot = authors.some(x => ['greenkeeper', 'renovate'].indexOf(x) > -1);
const isBot = authors.some(
x => ['greenkeeper', 'renovate', 'dependabot'].indexOf(x) > -1,
);

// Rules
if (!isBot) {
Expand Down
4 changes: 4 additions & 0 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#
# var language = require('react-apollo/server');
#
if [ "${npm_command}" != "run-script" ]; then
echo "To ensure that your npm cli has the right credentials, you must run this through 'npm run deploy' instead of yarn." >&2
exit 1;
fi

# Clear the built output
rm -rf ./lib
Expand Down

0 comments on commit 5b7e8ba

Please sign in to comment.