This repository has been archived by the owner on Mar 9, 2022. It is now read-only.
forked from sintaxi/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
246 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
exports.compile = function(filePath, fileContents, callback){ | ||
callback(null, fileContents.toString()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,32 +12,72 @@ | |
}, | ||
"author": "Brock Whitten <[email protected]>", | ||
"contributors": [ | ||
{ "name": "Brock Whitten", "email": "[email protected]" }, | ||
{ "name": "Brian Donovan", "email": "[email protected]" }, | ||
{ "name": "Kenneth Ormandy", "email": "[email protected]" }, | ||
{ "name": "Zhang Yichao", "email": "[email protected]" }, | ||
{ "name": "Carlos Rodriguez" }, | ||
{ "name": "Zeke Sikelianos", "email": "[email protected]" }, | ||
{ "name": "Guilherme Rodrigues", "email": "[email protected]" }, | ||
{ "name": "Radu Brehar", "email": "[email protected]" }, | ||
{ "name": "Glen Maddern", "email": "[email protected]" }, | ||
{ "name": "Jed Foster", "email": "[email protected]" }, | ||
{ "name": "Sehrope Sarkuni", "email": "[email protected]" }, | ||
{ "name": "Keiichiro Matsumoto", "email": "[email protected]" }, | ||
{ "name": "Najam Khn", "email": "[email protected]" } | ||
{ | ||
"name": "Brock Whitten", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Brian Donovan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Kenneth Ormandy", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Zhang Yichao", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Carlos Rodriguez" | ||
}, | ||
{ | ||
"name": "Zeke Sikelianos", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Guilherme Rodrigues", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Radu Brehar", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Glen Maddern", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jed Foster", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Sehrope Sarkuni", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Keiichiro Matsumoto", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Najam Khn", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"lru-cache": "2.6.1", | ||
"jade": "git://github.com/harp/jade#v1.9.3-bc.2", | ||
"autoprefixer": "5.1.0", | ||
"browserify": "^10.2.4", | ||
"coffee-script": "1.9.2", | ||
"ejs": "1.0.0", | ||
"node-sass": "3.0.0-beta.5", | ||
"marked": "0.3.3", | ||
"jade": "git://github.com/harp/jade#v1.9.3-bc.2", | ||
"less": "2.5.0", | ||
"stylus": "0.47.3", | ||
"lru-cache": "2.6.1", | ||
"marked": "0.3.3", | ||
"minify": "git://github.com/kennethormandy/minify#v0.3.0", | ||
"autoprefixer": "5.1.0" | ||
"node-sass": "3.0.0-beta.5", | ||
"stylus": "0.47.3", | ||
"through": "^2.3.7" | ||
}, | ||
"devDependencies": { | ||
"mocha": "1.8.2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Let's see if we can mix .coffee & .es | ||
|
||
exports.pow = (num) -> | ||
num * num |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Let's see if we can mix .es & .js | ||
|
||
exports.pow = function(num) { | ||
return num * num; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# pow = require('./Math').pow; | ||
|
||
console.log(pow(4)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* | ||
* pow = require('./Math').pow; | ||
*/ | ||
|
||
console.log(pow(4)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
require = (file) -> | ||
# custom implementation | ||
|
||
pow = require('./Math').pow | ||
|
||
console.log pow(4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var require = function(file) { | ||
// custom implementation | ||
}; | ||
|
||
var pow = require('./Math').pow; | ||
|
||
console.log(pow(4)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pow = require('./Math.coffee').pow | ||
|
||
console.log pow(4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var pow = require('./Math.coffee').pow; | ||
|
||
console.log(pow(4)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pow = require('./Math.js').pow | ||
|
||
console.log pow(4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var pow = require('./Math.js').pow; | ||
|
||
console.log(pow(4)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filePath
should besrcPath
here, that fixes the issue I described in sintaxi#97 (comment)