What does “!” mean in file paths?
I am reading over someone's gulpfile.js
that I found, and came across an interesting character that I've not seen in file paths before; the !
symbol. I tried to do some searches for this but yielded nothing.
gulp.task("min:js", function () {
gulp.src([paths.js, "!" + paths.minJs], { base: "." })
.pipe(concat(paths.concatJsDest))
.pipe(uglify())
.pipe(gulp.dest("."));
});
Does the !
have some particular meaning, here?
gulp
add a comment |
I am reading over someone's gulpfile.js
that I found, and came across an interesting character that I've not seen in file paths before; the !
symbol. I tried to do some searches for this but yielded nothing.
gulp.task("min:js", function () {
gulp.src([paths.js, "!" + paths.minJs], { base: "." })
.pipe(concat(paths.concatJsDest))
.pipe(uglify())
.pipe(gulp.dest("."));
});
Does the !
have some particular meaning, here?
gulp
1
possible duplicate of Excluding files/directories from Gulp task
– afsantos
Sep 25 '15 at 22:33
add a comment |
I am reading over someone's gulpfile.js
that I found, and came across an interesting character that I've not seen in file paths before; the !
symbol. I tried to do some searches for this but yielded nothing.
gulp.task("min:js", function () {
gulp.src([paths.js, "!" + paths.minJs], { base: "." })
.pipe(concat(paths.concatJsDest))
.pipe(uglify())
.pipe(gulp.dest("."));
});
Does the !
have some particular meaning, here?
gulp
I am reading over someone's gulpfile.js
that I found, and came across an interesting character that I've not seen in file paths before; the !
symbol. I tried to do some searches for this but yielded nothing.
gulp.task("min:js", function () {
gulp.src([paths.js, "!" + paths.minJs], { base: "." })
.pipe(concat(paths.concatJsDest))
.pipe(uglify())
.pipe(gulp.dest("."));
});
Does the !
have some particular meaning, here?
gulp
gulp
edited Sep 25 '15 at 22:27
JJJ
29.2k147592
29.2k147592
asked Sep 25 '15 at 22:24


CielCiel
1,28553084
1,28553084
1
possible duplicate of Excluding files/directories from Gulp task
– afsantos
Sep 25 '15 at 22:33
add a comment |
1
possible duplicate of Excluding files/directories from Gulp task
– afsantos
Sep 25 '15 at 22:33
1
1
possible duplicate of Excluding files/directories from Gulp task
– afsantos
Sep 25 '15 at 22:33
possible duplicate of Excluding files/directories from Gulp task
– afsantos
Sep 25 '15 at 22:33
add a comment |
2 Answers
2
active
oldest
votes
I'm not an expert on Gulp, but a quick search shows that it tells gulp to ignore a given path.
Prepending a path with an exclamation mark tells Gulp to exclude that directory.
So, in your example, paths.minJs
should be excluded from the task Gulp is performing.
Actually it is used to negate a pattern, based on the answer to another question. That is, it is used to select what does not match the following pattern. As a consequence, it ignores the path in the pattern.
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
add a comment |
Additionnaly to my above comment that I report here:
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
This a piece of code I often use to concatenate and uglify my Js files in most of my projects:
// My task called jsmin depend on another task, assume it is called clean but could be whatever
// That means that until the clean task is not completed, the jsmin task will not be executed.
gulp.task( 'jsmin', ['clean'], function() {
// First I clean the destination folder
del([ 'public/js/*' ]);
// Then I compile all the Js contained in source/js/ into min.js into public/js/
// In my example I concatenate all the Js together then I minimize them.
return gulp.src( 'source/js/*.js' )
.pipe(concat( "js.min.js" ))
.pipe(uglify())
.pipe(gulp.dest('public/js/'));
});
Hope that helps you.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f32791504%2fwhat-does-mean-in-file-paths%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm not an expert on Gulp, but a quick search shows that it tells gulp to ignore a given path.
Prepending a path with an exclamation mark tells Gulp to exclude that directory.
So, in your example, paths.minJs
should be excluded from the task Gulp is performing.
Actually it is used to negate a pattern, based on the answer to another question. That is, it is used to select what does not match the following pattern. As a consequence, it ignores the path in the pattern.
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
add a comment |
I'm not an expert on Gulp, but a quick search shows that it tells gulp to ignore a given path.
Prepending a path with an exclamation mark tells Gulp to exclude that directory.
So, in your example, paths.minJs
should be excluded from the task Gulp is performing.
Actually it is used to negate a pattern, based on the answer to another question. That is, it is used to select what does not match the following pattern. As a consequence, it ignores the path in the pattern.
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
add a comment |
I'm not an expert on Gulp, but a quick search shows that it tells gulp to ignore a given path.
Prepending a path with an exclamation mark tells Gulp to exclude that directory.
So, in your example, paths.minJs
should be excluded from the task Gulp is performing.
Actually it is used to negate a pattern, based on the answer to another question. That is, it is used to select what does not match the following pattern. As a consequence, it ignores the path in the pattern.
I'm not an expert on Gulp, but a quick search shows that it tells gulp to ignore a given path.
Prepending a path with an exclamation mark tells Gulp to exclude that directory.
So, in your example, paths.minJs
should be excluded from the task Gulp is performing.
Actually it is used to negate a pattern, based on the answer to another question. That is, it is used to select what does not match the following pattern. As a consequence, it ignores the path in the pattern.
edited May 23 '17 at 11:45
Community♦
11
11
answered Sep 25 '15 at 22:29
afsantosafsantos
3,53542547
3,53542547
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
add a comment |
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Thanks. I read over it several times but that line just never jumped at me.
– Ciel
Sep 25 '15 at 22:43
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
– CDF
Sep 26 '15 at 8:05
add a comment |
Additionnaly to my above comment that I report here:
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
This a piece of code I often use to concatenate and uglify my Js files in most of my projects:
// My task called jsmin depend on another task, assume it is called clean but could be whatever
// That means that until the clean task is not completed, the jsmin task will not be executed.
gulp.task( 'jsmin', ['clean'], function() {
// First I clean the destination folder
del([ 'public/js/*' ]);
// Then I compile all the Js contained in source/js/ into min.js into public/js/
// In my example I concatenate all the Js together then I minimize them.
return gulp.src( 'source/js/*.js' )
.pipe(concat( "js.min.js" ))
.pipe(uglify())
.pipe(gulp.dest('public/js/'));
});
Hope that helps you.
add a comment |
Additionnaly to my above comment that I report here:
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
This a piece of code I often use to concatenate and uglify my Js files in most of my projects:
// My task called jsmin depend on another task, assume it is called clean but could be whatever
// That means that until the clean task is not completed, the jsmin task will not be executed.
gulp.task( 'jsmin', ['clean'], function() {
// First I clean the destination folder
del([ 'public/js/*' ]);
// Then I compile all the Js contained in source/js/ into min.js into public/js/
// In my example I concatenate all the Js together then I minimize them.
return gulp.src( 'source/js/*.js' )
.pipe(concat( "js.min.js" ))
.pipe(uglify())
.pipe(gulp.dest('public/js/'));
});
Hope that helps you.
add a comment |
Additionnaly to my above comment that I report here:
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
This a piece of code I often use to concatenate and uglify my Js files in most of my projects:
// My task called jsmin depend on another task, assume it is called clean but could be whatever
// That means that until the clean task is not completed, the jsmin task will not be executed.
gulp.task( 'jsmin', ['clean'], function() {
// First I clean the destination folder
del([ 'public/js/*' ]);
// Then I compile all the Js contained in source/js/ into min.js into public/js/
// In my example I concatenate all the Js together then I minimize them.
return gulp.src( 'source/js/*.js' )
.pipe(concat( "js.min.js" ))
.pipe(uglify())
.pipe(gulp.dest('public/js/'));
});
Hope that helps you.
Additionnaly to my above comment that I report here:
Note that if your task has to compile js into minified js, you would rather use 2 differents folders. As an example, a folder /source/js/ whose files are compiled in min.js into /dist/js/ ( or /public/js/ or anything you want ).
This a piece of code I often use to concatenate and uglify my Js files in most of my projects:
// My task called jsmin depend on another task, assume it is called clean but could be whatever
// That means that until the clean task is not completed, the jsmin task will not be executed.
gulp.task( 'jsmin', ['clean'], function() {
// First I clean the destination folder
del([ 'public/js/*' ]);
// Then I compile all the Js contained in source/js/ into min.js into public/js/
// In my example I concatenate all the Js together then I minimize them.
return gulp.src( 'source/js/*.js' )
.pipe(concat( "js.min.js" ))
.pipe(uglify())
.pipe(gulp.dest('public/js/'));
});
Hope that helps you.
answered Sep 26 '15 at 8:16


CDFCDF
1845
1845
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f32791504%2fwhat-does-mean-in-file-paths%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
possible duplicate of Excluding files/directories from Gulp task
– afsantos
Sep 25 '15 at 22:33