You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/compose.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -215,8 +215,6 @@ The `serverless-compose.yml` and `serverless.yml` files have different syntaxes
215
215
216
216
Unless documented here, expect `serverless.yml` features to not be supported in `serverless-compose.yml`. For example, it is not possible to include plugins or use most `serverless.yml` variables (like `${self:`, `${opt:`, etc.) inside `serverless-compose.yml`.
217
217
218
-
You can [open feature requests](https://github.com/serverless/compose) if you need features that aren't supported in `serverless-compose.yml`.
219
-
220
218
## Refreshing outputs
221
219
222
220
The outputs of a service are stored locally (in the `.serverless/` directory). If a colleague deployed changes that changed the outputs of a service, you can refresh your local state via the `refresh-outputs` command:
'Please install it manually with "npm i --save-dev @serverless/compose" and run this command again.',
138
+
'Please install it manually with "npm i --save-dev @osls/compose" and run this command again.',
139
139
].join('\n')}\n`
140
140
);
141
141
return;
142
142
}
143
143
}else{
144
144
// Non-interactive scenario
145
145
146
-
// Here, we want to check if user has `@serverless/compose` in `devDependencies` of `package.json`
146
+
// Here, we want to check if user has `@osls/compose` in `devDependencies` of `package.json`
147
147
// If that is the case, we want to run `npm install` to ensure it's installed
148
-
// In all other scenarios, we want to inform user that `@serverless/compose` needs to be installed first (and/or added to "package.json")
148
+
// In all other scenarios, we want to inform user that `@osls/compose` needs to be installed first (and/or added to "package.json")
149
149
process.stdout.write(`${['','Installing Serverless Compose CLI via NPM'].join('\n')}\n`);
150
150
151
151
constfailedInstallationErrorMessage=`${[
152
152
'',
153
-
'Installation failed. Make sure the "@serverless/compose" package is required in "package.json" in the current directory so that Serverless Framework installs Compose automatically.',
154
-
'Alternatively you can install the "@serverless/compose" package manually via NPM.',
153
+
'Installation failed. Make sure the "@osls/compose" package is required in "package.json" in the current directory so that Serverless Framework installs Compose automatically.',
154
+
'Alternatively you can install the "@osls/compose" package manually via NPM.',
0 commit comments