我正在尝试将/dist
中的许多python依赖项捆绑到主zip文件中,以将其部署到lambda。这些依赖项具有必需文件的隐藏子文件夹(无论出于何种原因)。
例如:
dist/psycopg2/.libs
或dist/numpy/.libs
Grunt仅在compress.dist.files
{
cwd: 'dist/',
src: ['**', '**/.*'],
dest: '/',
expand: true
}
以这种方式包括了dist/.somefolder
中的隐藏文件夹,但这些子文件夹中没有任何隐藏文件夹。我怎么也可以压缩它们
答案 0 :(得分:0)
结果是这样的:
{
cwd: 'dist/',
src: ['**'],
dest: '/',
dot: true,
expand: true
}