mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-05-21 13:21:51 +00:00
12 lines
211 B
Bash
12 lines
211 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
OutFile='output/nodejs/postal.js'
|
||
|
|
|
||
|
|
cp version-header.js $OutFile
|
||
|
|
|
||
|
|
# Combine the source files
|
||
|
|
while read line; do
|
||
|
|
cat ../$line >> $OutFile
|
||
|
|
done < SourceManifest.txt
|
||
|
|
|
||
|
|
cat NodeExports.js >> $OutFile
|