Created
August 23, 2019 10:16
-
-
Save yokotak0527/34edd8d726820dfa0655fb88bab60632 to your computer and use it in GitHub Desktop.
globでファイル一覧取得
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// node_modulesを除くjsファイル | |
glob.sync('{,!(node_modules)/**/}[!_]*.js') | |
// node_modulesを除くSassファイル (.sassと.scss) | |
glob.sync('{,!(node_modules)/**/}[!_]*.s[a|c]ss') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment