Skip to content
This repository has been archived by the owner on Mar 29, 2020. It is now read-only.

Commit

Permalink
add stable 2.x versions of cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mike182uk committed Sep 28, 2017
1 parent eeeb959 commit 9a8fb0f
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 4 deletions.
2 changes: 1 addition & 1 deletion coffeescript-versions.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
module.exports = [ '2.0.0-beta4', '2.0.0-beta3', '2.0.0-beta2', '2.0.0-alpha1', '1.12.7', '1.12.6', '1.12.5', '1.12.4', '1.12.3', '1.12.2', '1.12.1', '1.12.0', '1.11.1', '1.11.0', '1.10.0' ]
module.exports = [ '2.0.1', '2.0.0', '2.0.0-beta5', '2.0.0-beta4', '2.0.0-beta3', '2.0.0-beta2', '2.0.0-alpha1', '1.12.7', '1.12.6', '1.12.5', '1.12.4', '1.12.3', '1.12.2', '1.12.1', '1.12.0', '1.11.1', '1.11.0', '1.10.0' ]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CoffeeWriter",
"version": "1.2.0",
"version": "1.3.0",
"description": "A simple desktop app for quickly compiling CoffeeScript",
"private": true,
"author": "Michael David Barrett <[email protected]>",
Expand Down
11 changes: 10 additions & 1 deletion scripts/build/vendor-coffeescript
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
rm -rf vendor/*

# download minified CoffeeScript versions
for v in "2.0.0-alpha1" "2.0.0-beta1" "2.0.0-beta2" "2.0.0-beta3" "2.0.0-beta4"; do
for v in "2.0.0-alpha1" "2.0.0-beta1" "2.0.0-beta2" "2.0.0-beta3" "2.0.0-beta4" "2.0.0-beta5" "2.0.0" "2.0.1"; do
curl -s https://raw.githubusercontent.com/jashkenas/coffeescript/$v/docs/v2/browser-compiler/coffeescript.js > vendor/coffeescript-$v.min.js
done

Expand All @@ -19,6 +19,9 @@ done
echo $(cat <<EOF
// THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.\n
module.exports = [
'2.0.1',
'2.0.0',
'2.0.0-beta5',
'2.0.0-beta4',
'2.0.0-beta3',
'2.0.0-beta2',
Expand All @@ -43,6 +46,9 @@ echo $(cat <<EOF
// THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.\n
module.exports = {
compilers: [
require('coffeescript-2.0.1'),
require('coffeescript-2.0.0'),
require('coffeescript-2.0.0-beta5'),
require('coffeescript-2.0.0-beta4'),
require('coffeescript-2.0.0-beta3'),
require('coffeescript-2.0.0-beta2'),
Expand All @@ -59,6 +65,9 @@ module.exports = {
require('coffeescript-1.11.0'),
require('coffeescript-1.10.0')
], versions: [
'2.0.1',
'2.0.0',
'2.0.0-beta5',
'2.0.0-beta4',
'2.0.0-beta3',
'2.0.0-beta2',
Expand Down
2 changes: 1 addition & 1 deletion src/app/coffeescript-manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions vendor/coffeescript-2.0.0-beta5.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions vendor/coffeescript-2.0.0.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions vendor/coffeescript-2.0.1.min.js

Large diffs are not rendered by default.

0 comments on commit 9a8fb0f

Please sign in to comment.