mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2025-01-18 13:40:04 -05:00
dc469d4a8e
Add `.gitattributes` for consistent line endings across platforms. Use `node` instead of deprecated `stable` version specifier for Travis. Set dev tool to `cheap-module-source-map`.
27 lines
716 B
YAML
27 lines
716 B
YAML
language: node_js
|
|
node_js:
|
|
- '4.2'
|
|
- 'node'
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
after_script:
|
|
- |
|
|
# RELEASE_BRANCHES and NPM_TOKEN defined in Travis settings panel
|
|
declare exitCode
|
|
$(npm bin)/travis-after-all
|
|
exitCode=$?
|
|
if [[
|
|
# Execute after all jobs finish successfully
|
|
$exitCode = 0 &&
|
|
# Only release on release branches
|
|
$RELEASE_BRANCHES =~ $TRAVIS_BRANCH &&
|
|
# Don't release on PR builds
|
|
$TRAVIS_PULL_REQUEST = "false"
|
|
]]; then
|
|
# Authenticate NPM
|
|
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
|
|
# Set version to timestamp
|
|
npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%s)
|
|
npm publish
|
|
fi
|