mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
// Open license ensures JS files are accessible as is
|
|
// which is important for local templates installation
|
|
license: 'MIT',
|
|
files: [
|
|
// Standalone commands
|
|
'../../commands',
|
|
// Custom resources
|
|
'../../lib/plugins/aws/custom-resources/resources',
|
|
// Basic CF templates
|
|
'../../lib/plugins/aws/package/lib/*.json',
|
|
// Service templates
|
|
'../../lib/plugins/create/templates',
|
|
// Local invocation artifacts
|
|
'../../lib/plugins/aws/invoke-local/runtime-wrappers',
|
|
// Dashboard policies
|
|
'../../node_modules/@serverless/dashboard-plugin/lib/safeguards/policies',
|
|
// Dashboard wrappers
|
|
'../../node_modules/@serverless/dashboard-plugin/sdk-js/dist/index.js',
|
|
'../../node_modules/@serverless/dashboard-plugin/sdk-py',
|
|
// Ensure npm is bundled as a dependency
|
|
'../../node_modules/npm/lib',
|
|
'../../node_modules/npm/bin/npm-cli.js',
|
|
// Below module is not automatically traced by pkg, we need to point it manually
|
|
// See: https://github.com/npm/npm-lifecycle/pull/41
|
|
'../../node_modules/node-gyp/bin/node-gyp.js',
|
|
'../../node_modules/npm/node_modules/node-gyp/bin/node-gyp.js',
|
|
'../../node_modules/npm/node_modules/npm-lifecycle/node_modules/node-gyp/bin/node-gyp.js',
|
|
'../../node_modules/axios/dist/node/axios.cjs',
|
|
],
|
|
};
|