Skip to content

Commit 588ac45

Browse files
committed
Lint code fix
1 parent c1859ac commit 588ac45

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

components/airtable_oauth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/airtable_oauth",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Pipedream Airtable (OAuth) Components",
55
"main": "airtable_oauth.app.mjs",
66
"keywords": [

components/wordpress_com/actions/create-post/create-post.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-create-post",
55
name: "Create New Post",
66
description: "Creates a new post on a WordPress.com site. [See the documentation](https://developer.wordpress.com/docs/api/1.1/post/sites/%24site/posts/new/)",
7-
version: "0.0.9",
7+
version: "0.0.10",
88
type: "action",
99
props: {
1010
wordpress,

components/wordpress_com/actions/delete-post/delete-post.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-delete-post",
55
name: "Delete Post",
66
description: "Deletes a post. [See the documentation](https://developer.wordpress.com/docs/api/1.1/post/sites/%24site/posts/%24post_ID/delete/)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
wordpress,

components/wordpress_com/actions/upload-media/upload-media.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "wordpress_com-upload-media",
66
name: "Upload Media",
77
description: "Uploads a media file from a URL to the specified WordPress.com site. [See the documentation](https://developer.wordpress.com/docs/api/1.1/post/sites/%24site/media/new/)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "action",
1010
props: {
1111
wordpress,

components/wordpress_com/sources/new-comment/new-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-new-comment",
55
name: "New Comment",
66
description: "Emit new event for each new comment added since the last run. If no new comments, emit nothing.",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "source",
99
dedupe: "unique",
1010
methods: {

components/wordpress_com/sources/new-follower/new-follower.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-new-follower",
55
name: "New Follower",
66
description: "Emit new event for each new follower that subscribes to the site.",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "source",
99
dedupe: "unique",
1010
methods: {

components/wordpress_com/sources/new-post/new-post.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "wordpress_com-new-post",
55
name: "New Post",
66
description: "Emit new event for each new post published since the last run. If no new posts, emit nothing.",
7-
version: "0.0.4",
7+
version: "0.0.5",
88
type: "source",
99
dedupe: "unique",
1010
props: {

components/wordpress_com/wordpress_com.app.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default {
4545
},
4646
methods: {
4747
...methods,
48-
_mock$(){
48+
_mock$() {
4949
return new Proxy({}, {
5050
get() {
5151
return (...args) => console.log(...args);
@@ -162,7 +162,7 @@ export default {
162162
...opts,
163163
});
164164
},
165-
async initialize(subject, db, dbName){
165+
async initialize(subject, db, dbName) {
166166
if (!subject.length) {
167167
console.log("No ID found on first run. Source initialized with no cursor.");
168168
return false;
@@ -172,6 +172,6 @@ export default {
172172
await db.set(dbName, newest);
173173
console.log(`Initialized ${dbName} on first run with ID ${newest}.`);
174174
return true ;
175-
}
175+
},
176176
},
177177
};

0 commit comments

Comments
 (0)