mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
13 lines
284 B
JavaScript
Executable File
13 lines
284 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// TODO (BREAKING): Remove this file with next major release
|
|
|
|
'use strict';
|
|
|
|
require('../lib/utils/logDeprecation')(
|
|
'SLSS_CLI_ALIAS',
|
|
'Support for "slss" command will be removed with v2.0.0. Use "sls" or "serverless" instead'
|
|
);
|
|
|
|
require('./serverless.js');
|