forked from 0x2620/oxjs
updates for loader
This commit is contained in:
parent
13501e2da8
commit
7430ef1023
10 changed files with 429 additions and 192 deletions
|
|
@ -55,6 +55,11 @@ for dirname, dirnames, filenames in os.walk(source_path + 'js/'):
|
|||
elif not '_' in dirname and not filename.endswith('.min.js'):
|
||||
files.append(os.path.join(dirname.replace(source_path , '../source/'), filename))
|
||||
|
||||
for dirname, dirnames, filenames in os.walk(source_path + 'css'):
|
||||
for filename in filenames:
|
||||
if filename[:1] != '.':
|
||||
write_link(os.path.join(dirname, filename), build_path + 'css/' + filename)
|
||||
|
||||
for dirname, dirnames, filenames in os.walk(build_path + 'png'):
|
||||
for filename in filenames:
|
||||
if filename[:1] != '.':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue