mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
45 lines
1.1 KiB
Bash
Executable file
45 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
# http://paperjs.org/
|
|
#
|
|
# Copyright (c) 2011 - 2014, Juerg Lehni & Jonathan Puckey
|
|
# http://scratchdisk.com/ & http://jonathanpuckey.com/
|
|
#
|
|
# Distributed under the MIT license. See LICENSE file for details.
|
|
#
|
|
# All rights reserved.
|
|
|
|
# Usage:
|
|
# build.sh MODE
|
|
#
|
|
# MODE:
|
|
# commented Preprocessed, still formated and commented
|
|
# stripped Preprocessed, formated but without comments
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
MODE="stripped"
|
|
else
|
|
MODE=$1
|
|
fi
|
|
|
|
# Create the dist folder if it does not exist yet.
|
|
if [ ! -d ../dist/ ]
|
|
then
|
|
mkdir ../dist/
|
|
fi
|
|
|
|
if [ -f ../dist/paper-full.js ]
|
|
then
|
|
rm ../dist/paper-full.js
|
|
fi
|
|
|
|
if [ -f ../dist/paper-node.js ]
|
|
then
|
|
rm ../dist/paper-node.js
|
|
fi
|
|
|
|
./preprocess.sh $MODE ../src/paper.js "-i '../src/constants.js'" ../dist/paper-full.js
|
|
./preprocess.sh $MODE ../src/paper.js "-o '{ \"paperScript\": false, \"palette\": false }' -i '../src/constants.js'" ../dist/paper-core.js
|
|
./preprocess.sh $MODE ../src/paper.js "-o '{ \"environment\": \"node\", \"legacy\": false }' -i '../src/constants.js'" ../dist/paper-node.js
|