Merge branch 'platform-independent-build' of https://github.com/autayeu/swagger-ui into autayeu-platform-independent-build
Conflicts: Cakefile
This commit is contained in:
60
Cakefile
60
Cakefile
@@ -1,8 +1,8 @@
|
|||||||
fs = require 'fs'
|
fs = require 'fs'
|
||||||
path = require 'path'
|
|
||||||
{exec} = require 'child_process'
|
{exec} = require 'child_process'
|
||||||
less = require 'less'
|
less = require 'less'
|
||||||
handlebars = require 'handlebars'
|
handlebars = require 'handlebars'
|
||||||
|
ncp = require 'ncp'
|
||||||
|
|
||||||
sourceFiles = [
|
sourceFiles = [
|
||||||
'SwaggerUi'
|
'SwaggerUi'
|
||||||
@@ -23,12 +23,12 @@ sourceFiles = [
|
|||||||
|
|
||||||
task 'clean', 'Removes distribution', ->
|
task 'clean', 'Removes distribution', ->
|
||||||
console.log 'Clearing dist...'
|
console.log 'Clearing dist...'
|
||||||
exec 'rm -rf dist'
|
rmDir('dist') if fs.existsSync('dist')
|
||||||
|
|
||||||
task 'dist', 'Build a distribution', ->
|
task 'dist', 'Build a distribution', ->
|
||||||
console.log "Build distribution in ./dist"
|
console.log "Build distribution in ./dist"
|
||||||
fs.mkdirSync('dist') if not path.existsSync('dist')
|
fs.mkdirSync('dist') if not fs.existsSync('dist')
|
||||||
fs.mkdirSync('dist/lib') if not path.existsSync('dist/lib')
|
fs.mkdirSync('dist/lib') if not fs.existsSync('dist/lib')
|
||||||
|
|
||||||
appContents = new Array remaining = sourceFiles.length
|
appContents = new Array remaining = sourceFiles.length
|
||||||
for file, index in sourceFiles then do (file, index) ->
|
for file, index in sourceFiles then do (file, index) ->
|
||||||
@@ -67,7 +67,6 @@ task 'dist', 'Build a distribution', ->
|
|||||||
throw err if err
|
throw err if err
|
||||||
fs.unlink 'dist/_swagger-ui.coffee'
|
fs.unlink 'dist/_swagger-ui.coffee'
|
||||||
console.log ' : Combining with javascript...'
|
console.log ' : Combining with javascript...'
|
||||||
|
|
||||||
fs.readFile 'package.json', 'utf8', (err, fileContents) ->
|
fs.readFile 'package.json', 'utf8', (err, fileContents) ->
|
||||||
obj = JSON.parse(fileContents)
|
obj = JSON.parse(fileContents)
|
||||||
exec 'echo "// swagger-ui.js" > dist/swagger-ui.js'
|
exec 'echo "// swagger-ui.js" > dist/swagger-ui.js'
|
||||||
@@ -93,13 +92,16 @@ task 'dist', 'Build a distribution', ->
|
|||||||
|
|
||||||
pack = ->
|
pack = ->
|
||||||
console.log ' : Packaging...'
|
console.log ' : Packaging...'
|
||||||
exec 'cp -r lib dist'
|
ncp.ncp 'lib', 'dist/lib', (err) ->
|
||||||
console.log ' : Copied swagger-ui libs'
|
reportNcpErrors err
|
||||||
exec 'cp -r node_modules/swagger-client/lib/swagger.js dist/lib'
|
console.log ' : Copied swagger-ui libs'
|
||||||
console.log ' : Copied swagger dependencies'
|
fs.mkdirSync('dist/lib') if not fs.existsSync('dist/lib')
|
||||||
exec 'cp -r src/main/html/* dist'
|
fs.createReadStream('node_modules/swagger-client/lib/swagger.js').pipe(fs.createWriteStream('dist/lib/swagger.js'));
|
||||||
console.log ' : Copied html dependencies'
|
console.log ' : Copied swagger dependencies'
|
||||||
console.log ' !'
|
ncp.ncp 'src/main/html', 'dist', (err) ->
|
||||||
|
reportNcpErrors err
|
||||||
|
console.log ' : Copied html dependencies'
|
||||||
|
console.log ' !'
|
||||||
|
|
||||||
task 'spec', "Run the test suite", ->
|
task 'spec', "Run the test suite", ->
|
||||||
exec "open spec.html", (err, stdout, stderr) ->
|
exec "open spec.html", (err, stdout, stderr) ->
|
||||||
@@ -138,3 +140,37 @@ notify = (message) ->
|
|||||||
# title: 'CoffeeScript'
|
# title: 'CoffeeScript'
|
||||||
# image: 'bin/CoffeeScript.png'
|
# image: 'bin/CoffeeScript.png'
|
||||||
# try require('growl') message, options
|
# try require('growl') message, options
|
||||||
|
|
||||||
|
cat = (dest, files) ->
|
||||||
|
for file in files
|
||||||
|
body = fs.readFileSync(file);
|
||||||
|
fs.appendFileSync(dest, body);
|
||||||
|
fs.appendFileSync(dest, "\n");
|
||||||
|
|
||||||
|
rmDir = (dirPath) ->
|
||||||
|
try
|
||||||
|
files = fs.readdirSync(dirPath)
|
||||||
|
catch e
|
||||||
|
return
|
||||||
|
if files.length > 0
|
||||||
|
i = 0
|
||||||
|
|
||||||
|
while i < files.length
|
||||||
|
filePath = dirPath + "/" + files[i]
|
||||||
|
if fs.statSync(filePath).isFile()
|
||||||
|
fs.unlinkSync filePath
|
||||||
|
else
|
||||||
|
rmDir filePath
|
||||||
|
i++
|
||||||
|
fs.rmdirSync dirPath
|
||||||
|
|
||||||
|
reportNcpErrors = (err) ->
|
||||||
|
if Array.isArray(err)
|
||||||
|
console.error "There were errors during the copy."
|
||||||
|
err.forEach (err) ->
|
||||||
|
console.error err.stack or err.message
|
||||||
|
process.exit 1
|
||||||
|
else if err
|
||||||
|
console.error "An error has occurred."
|
||||||
|
console.error err.stack or err.message
|
||||||
|
process.exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user