mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
Actions: remove serverless prefix
This commit is contained in:
parent
7498e843a5
commit
219cea9f3a
@ -9,7 +9,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird'),
|
||||
Zip = require('node-zip'),
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird'),
|
||||
fs = require('fs'),
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird'),
|
||||
async = require('async'),
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird'),
|
||||
fs = require('fs');
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
chalk = require('chalk'),
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
chalk = require('chalk'),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
SUtils = require(path.join(serverlessPath, 'utils'));
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
SUtils = require(path.join(serverlessPath, 'utils'));
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird');
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird');
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
module.exports = function (SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird');
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
BbPromise = require('bluebird');
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
SUtils = require(path.join(serverlessPath, 'utils'));
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
BbPromise = require('bluebird'),
|
||||
chalk = require('chalk'),
|
||||
SCli = require( path.join( serverlessPath, 'utils', 'cli'));
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SUtils = require(path.join(serverlessPath, 'utils')),
|
||||
spawnSync = require('child_process').spawnSync,
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
URL = require('url'),
|
||||
Download = require('download'),
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
SUtils = require(path.join(serverlessPath, 'utils')),
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require( path.join( serverlessPath, 'ServerlessError' ) ),
|
||||
SError = require( path.join( serverlessPath, 'Error' ) ),
|
||||
SCli = require( path.join( serverlessPath, 'utils/cli' ) ),
|
||||
SUtils = require( path.join( serverlessPath, 'utils' ) ),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require( path.join( serverlessPath, 'ServerlessError' ) ),
|
||||
SError = require( path.join( serverlessPath, 'Error' ) ),
|
||||
SCli = require( path.join( serverlessPath, 'utils/cli' ) ),
|
||||
SUtils = require( path.join( serverlessPath, 'utils' ) ),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
fs = require('fs'),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
SUtils = require(path.join(serverlessPath, 'utils'));
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
fs = BbPromise.promisifyAll(require('fs')),
|
||||
|
||||
@ -9,7 +9,7 @@ module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
replaceall = require('replaceall'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
_ = require('lodash'),
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
fs = BbPromise.promisifyAll(require('fs')),
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
BbPromise = require('bluebird'),
|
||||
SUtils = require(path.join(serverlessPath, 'utils/index')),
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
os = require('os'),
|
||||
fs = require('fs'),
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
module.exports = function(SPlugin, serverlessPath) {
|
||||
|
||||
const path = require('path'),
|
||||
SError = require(path.join(serverlessPath, 'ServerlessError')),
|
||||
SError = require(path.join(serverlessPath, 'Error')),
|
||||
SCli = require(path.join(serverlessPath, 'utils/cli')),
|
||||
fs = require('fs'),
|
||||
BbPromise = require('bluebird'),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user