grunt compress包含隐藏的子文件夹

时间:2018-10-04 17:36:31

标签: gruntjs grunt-contrib-compass

我正在尝试将/dist中的许多python依赖项捆绑到主zip文件中,以将其部署到lambda。这些依赖项具有必需文件的隐藏子文件夹(无论出于何种原因)。

例如:

dist/psycopg2/.libsdist/numpy/.libs

Grunt仅在compress.dist.files

中跳过这些隐藏的子文件夹
{
  cwd: 'dist/',
  src: ['**', '**/.*'],
  dest: '/',
  expand: true
}

以这种方式包括了dist/.somefolder中的隐藏文件夹,但这些子文件夹中没有任何隐藏文件夹。我怎么也可以压缩它们

1 个答案:

答案 0 :(得分:0)

结果是这样的:

{
cwd: 'dist/',
src: ['**'],
dest: '/',
dot: true,
expand: true
}