Skip to content

Commit 4304393

Browse files
authored
Update dependencies (#8)
1 parent 9b08a15 commit 4304393

File tree

6 files changed

+1040
-1238
lines changed

6 files changed

+1040
-1238
lines changed

.eslintrc.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
/* eslint-disable comma-dangle */
12
module.exports = {
23
root: true,
34

45
plugins: ['zero-config'],
56
extends: ['plugin:zero-config/node'],
67

78
env: {
8-
mocha: true
9-
}
9+
mocha: true,
10+
},
1011
};

index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable comma-dangle */
12
/* eslint-disable max-len, max-lines-per-function */
23
// eslint-disable-next-line strict
34
'use strict';
@@ -26,7 +27,7 @@ module.exports = {
2627
return context.deployTarget;
2728
},
2829

29-
url: ''
30+
url: '',
3031
},
3132

3233
requiredConfig: ['appName', 'orgName', 'authToken'],
@@ -84,16 +85,16 @@ module.exports = {
8485
command,
8586
`--org ${orgName}`,
8687
`--project ${appName}`,
87-
subCommand
88+
subCommand,
8889
].join(' ')
8990
);
9091
},
9192

9293
_exec(command = '') {
9394
return execSync(command, { cwd: this.project.root });
94-
}
95+
},
9596
});
9697

9798
return new DeployPlugin();
98-
}
99+
},
99100
};

0 commit comments

Comments
 (0)