文件名称:gulp-path-length:用于对文件路径强制限制字符的 Gulp 插件
文件大小:8KB
文件格式:ZIP
更新时间:2024-06-19 03:49:47
CoffeeScript
吞咽路径长度 一个插件,用于对文件路径实施字符限制。 创建时考虑了 Windows 的 256 个字符限制,但也可以在其他平台上使用。 安装 npm install gulp-path-length 用法 var gulp = require ( 'gulp' ) ; var pathLength = require ( 'gulp-path-length' ) ; gulp . task ( 'default' , function ( ) { gulp . src ( './example/path/to/directory/**' , { read : false } ) . pipe ( pathLength ( ) ) ; } ) ; 如果您的路径过长,这将停止构建并显示错误。 我在这里将{read: false}传递给gulp.src因为我们不需
【文件预览】:
gulp-path-length-master
----.gitattributes(378B)
----src()
--------rewrite.coffee(182B)
--------index.coffee(1KB)
----.npmignore(27B)
----.travis.yml(52B)
----test()
--------dummyfiles()
--------index.coffee(4KB)
----README.md(2KB)
----appveyor.yml(747B)
----.editorconfig(171B)
----.gitignore(36B)
----gulpfile.coffee(997B)
----package.json(1KB)