mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
15 lines
385 B
JavaScript
Executable File
15 lines
385 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// TODO (BREAKING): Remove this file with next major release
|
|
// Left as a fallback placeholder to not accidentally break things
|
|
// https://github.com/search?q=%22bin%2Fserverless%22&type=Code
|
|
|
|
'use strict';
|
|
|
|
require('../lib/utils/logDeprecation')(
|
|
'BIN_SERVERLESS',
|
|
'bin/serverless is deprecated, use bin/serverless.js instead'
|
|
);
|
|
|
|
require('./serverless.js');
|