├── .gitignore ├── README.adoc ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src ├── main ├── groovy │ └── com │ │ └── craigburke │ │ └── asset │ │ ├── TypeScriptAssetFile.groovy │ │ ├── TypeScriptCompileState.groovy │ │ ├── TypeScriptDeclarationAssetFile.groovy │ │ └── TypeScriptProcessor.groovy ├── javascript │ └── sys-shim.js └── resources │ ├── META-INF │ └── asset-pipeline │ │ └── asset.specs │ ├── lib.d.ts │ └── tsc.js └── test ├── groovy └── com │ └── craigburke │ └── asset │ └── TypeScriptProcessorSpec.groovy └── resources ├── references ├── foo │ ├── bar │ │ └── foobar.ts │ ├── foo.ts │ └── foo2.ts └── references.ts └── simple.ts /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | node_modules 5 | *.iml 6 | gradle.properties 7 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- 1 | :version: 0.3.0 2 | :apVersion: 2.5.0 3 | :tscVersion: 1.7.5 4 | = TypeScript Asset-Pipeline 5 | 6 | The `typescript-asset-pipeline` is an https://github.com/bertramdev/asset-pipeline-core[Asset Pipeline] module that compiles TypeScript files using v{tscVersion} of the compiler. 7 | 8 | NOTE: This is a work in progress and will need more extensive testing, performance improvements, etc. *Until version 1.0 it should not be considered production ready.* 9 | 10 | == Getting Started 11 | 12 | === Gradle / Grails 3 13 | 14 | [source,groovy,subs='attributes'] 15 | .build.gradle 16 | ---- 17 | plugins { 18 | id 'com.bertramlabs.asset-pipeline' version '{apVersion}' 19 | } 20 | 21 | dependencies { 22 | assets 'com.craigburke:typescript-asset-pipeline:{version}' 23 | } 24 | ---- 25 | 26 | === Grails 2 27 | [source,groovy,subs='attributes'] 28 | .BuildConfig.groovy 29 | ---- 30 | dependencies { 31 | compile 'com.craigburke:typescript-asset-pipeline:{version}' 32 | } 33 | 34 | ---- 35 | 36 | == How it Works 37 | 38 | This plugin will compile any file with a `.ts` extension into corresponding JavaScript. It also supports the use of declaration files (`d.ts`). 39 | 40 | == Configuration 41 | 42 | You can set additional compiler options by setting the **typeScript** map. 43 | 44 | [source,groovy] 45 | .build.gradle 46 | ---- 47 | assets { 48 | configOptions: [ 49 | typeScript: [ 50 | module:'commonjs' // <1> 51 | target:'es5' 52 | experimentalDecorators:true // <2> 53 | ] 54 | ] 55 | } 56 | ---- 57 | <1> This translates to `--module commonjs` 58 | <2> Since a boolean is provided as the value, this is treated as a flag and translates to `--experimentalDecorators` 59 | 60 | See: https://github.com/Microsoft/TypeScript/wiki/Compiler-Options -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'groovy' 3 | id 'maven-publish' 4 | id 'com.jfrog.bintray' version '1.2' 5 | id 'com.moowork.node' version '0.10' 6 | id 'nebula.provided-base' version '2.2.2' 7 | } 8 | 9 | group = 'com.craigburke' 10 | version = '0.4.0' 11 | 12 | sourceCompatibility = 1.7 13 | 14 | repositories { 15 | mavenLocal() 16 | jcenter() 17 | } 18 | 19 | node { 20 | download = true 21 | } 22 | 23 | ext { 24 | npmDependencies = ['typescript', 'webpack'] 25 | 26 | tscPath = 'node_modules/typescript/lib/' 27 | tscFile = file("${tscPath}/tsc.js") 28 | libDFile = file("${tscPath}/lib.d.ts") 29 | updatedTscFile = file("${tscPath}/tsc.tmp.js") 30 | tscDestinationPath = file('src/main/resources/') 31 | } 32 | 33 | task('installCompilerDependencies', type: NpmTask) { 34 | args = ['install'] + npmDependencies 35 | } 36 | 37 | task('processCompiler', dependsOn: 'installCompilerDependencies') { 38 | doLast { 39 | copy { 40 | from 'src/main/javascript' 41 | into tscPath 42 | } 43 | String updatedJs = "ts.sys = require('./sys-shim');" 44 | updatedTscFile.text = tscFile.text.replaceFirst(/(?ms)ts\.sys.*\}\)\(\);/, updatedJs) 45 | 46 | String compileFunction = "module.exports = ts.executeCommandLine;" 47 | updatedTscFile.text = updatedTscFile.text.replaceFirst(/ts\.executeCommandLine\(ts\.sys\.args\);/, compileFunction) 48 | } 49 | } 50 | 51 | task('installCompiler', dependsOn: 'processCompiler', type: NodeTask) { 52 | script = file('node_modules/webpack/bin/webpack.js') 53 | args = [updatedTscFile.path, '--output-library', 'tsc', '--optimize-minimize', "${tscDestinationPath.path}/tsc.js"] 54 | doLast { 55 | copy { 56 | from libDFile 57 | into tscDestinationPath 58 | } 59 | } 60 | } 61 | 62 | task sourcesJar(type: Jar) { 63 | classifier = 'sources' 64 | from sourceSets.main.allSource 65 | } 66 | 67 | task javadocJar(type: Jar, dependsOn: javadoc) { 68 | classifier = 'javadoc' 69 | from 'build/docs/javadoc' 70 | } 71 | 72 | bintray { 73 | user = project.hasProperty('bintrayUsername') ? project.bintrayUsername : '' 74 | key = project.hasProperty('bintrayApiKey') ? project.bintrayApiKey : '' 75 | publications = ['maven'] 76 | 77 | pkg { 78 | repo = 'asset-pipeline' 79 | userOrg = 'craigburke' 80 | name = 'typescript-asset-pipeline' 81 | licenses = ['Apache-2.0'] 82 | } 83 | 84 | } 85 | 86 | publishing { 87 | publications { 88 | maven(MavenPublication) { 89 | artifactId 'typescript-asset-pipeline' 90 | pom.withXml { 91 | asNode().children().last() + { 92 | resolveStrategy = Closure.DELEGATE_FIRST 93 | name 'typescript-asset-pipeline' 94 | description "TypeScript extension for the Asset Pipeline Library" 95 | url 'https://github.com/craigburke/typescript-asset-pipeline' 96 | scm { 97 | url 'https://github.com/craigburke/typescript-asset-pipeline' 98 | connection 'scm:https://github.com/craigburke/typescript-asset-pipeline.git' 99 | developerConnection 'scm:https://github.com/craigburke/typescript-asset-pipeline.git' 100 | } 101 | licenses { 102 | license { 103 | name 'The Apache Software License, Version 2.0' 104 | url 'http://www.apache.org/license/LICENSE-2.0.txt' 105 | distribution 'repo' 106 | } 107 | } 108 | developers { 109 | developer { 110 | id 'craigburke' 111 | name 'Craig Burke' 112 | email 'craig@craigburke.com' 113 | } 114 | } 115 | } 116 | } 117 | from components.java 118 | artifact sourcesJar 119 | artifact javadocJar 120 | } 121 | } 122 | } 123 | 124 | dependencies { 125 | provided 'com.bertramlabs.plugins:asset-pipeline-core:2.0.12' 126 | provided 'org.codehaus.groovy:groovy-all:2.4.5' 127 | testCompile 'org.spockframework:spock-core:1.0-groovy-2.4' 128 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigburke/typescript-asset-pipeline/0709dc4a570a1093cb9ea3867d08017b199e4fb4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Sep 15 22:16:08 EDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-all.zip 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /src/main/groovy/com/craigburke/asset/TypeScriptAssetFile.groovy: -------------------------------------------------------------------------------- 1 | package com.craigburke.asset 2 | 3 | import asset.pipeline.AbstractAssetFile 4 | 5 | class TypeScriptAssetFile extends AbstractAssetFile { 6 | static final String contentType = 'application/javascript' 7 | static extensions = ['ts'] 8 | static final String compiledExtension = 'js' 9 | 10 | static processors = [TypeScriptProcessor] 11 | } -------------------------------------------------------------------------------- /src/main/groovy/com/craigburke/asset/TypeScriptCompileState.groovy: -------------------------------------------------------------------------------- 1 | package com.craigburke.asset 2 | 3 | import asset.pipeline.AssetFile 4 | 5 | class TypeScriptCompileState { 6 | AssetFile baseAsset 7 | String result 8 | } 9 | -------------------------------------------------------------------------------- /src/main/groovy/com/craigburke/asset/TypeScriptDeclarationAssetFile.groovy: -------------------------------------------------------------------------------- 1 | package com.craigburke.asset 2 | 3 | import asset.pipeline.AbstractAssetFile 4 | 5 | class TypeScriptDeclarationAssetFile extends AbstractAssetFile { 6 | static final String contentType = 'text/plain' 7 | static extensions = ['d.ts'] 8 | static final String compiledExtension = 'd.ts' 9 | 10 | static processors = [] 11 | 12 | static String directiveForLine(String line) { 13 | return null 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/groovy/com/craigburke/asset/TypeScriptProcessor.groovy: -------------------------------------------------------------------------------- 1 | package com.craigburke.asset 2 | 3 | import asset.pipeline.AbstractProcessor 4 | import asset.pipeline.AssetCompiler 5 | import asset.pipeline.AssetFile 6 | import asset.pipeline.AssetHelper 7 | import asset.pipeline.AssetPipelineConfigHolder 8 | import asset.pipeline.CacheManager 9 | import groovy.transform.Synchronized 10 | 11 | import javax.script.Invocable 12 | import javax.script.ScriptEngine 13 | import javax.script.ScriptEngineManager 14 | 15 | class TypeScriptProcessor extends AbstractProcessor { 16 | 17 | static ThreadLocal localCompileState = new ThreadLocal() 18 | static Invocable engine 19 | static String libDLibrary 20 | 21 | TypeScriptProcessor(AssetCompiler precompiler) { 22 | super(precompiler) 23 | initialize() 24 | } 25 | 26 | @Synchronized 27 | static initialize() { 28 | if (!engine) { 29 | ScriptEngineManager engineManager = new ScriptEngineManager() 30 | ScriptEngine jsEngine = engineManager.getEngineByName("javascript") 31 | URL tsc = TypeScriptProcessor.classLoader.getResource('tsc.js') 32 | jsEngine.eval(tsc.text) 33 | engine = (Invocable)jsEngine 34 | libDLibrary = TypeScriptProcessor.classLoader.getResource('lib.d.ts').text 35 | } 36 | } 37 | 38 | String process(String input, AssetFile assetFile) { 39 | localCompileState.set(new TypeScriptCompileState(baseAsset: assetFile)) 40 | List options = getOptions(assetFile.name) 41 | engine.invokeFunction('tsc', options) 42 | localCompileState.get().result 43 | } 44 | 45 | static List getOptions(String name) { 46 | List options = [] 47 | Map configOptions = AssetPipelineConfigHolder.config?.typeScript ?: [:] 48 | configOptions.each { String key, value -> 49 | String configKey = "--${key}" 50 | if (value.getClass() != Boolean) { 51 | options += [configKey, value] 52 | } 53 | else if (value) { 54 | options += configKey 55 | } 56 | } 57 | options += name 58 | options 59 | } 60 | 61 | static String readFile(String filePath) { 62 | TypeScriptCompileState compileState = getLocalCompileState().get() 63 | 64 | if (filePath == 'lib.d.ts') { 65 | libDLibrary 66 | } 67 | else if (filePath == compileState.baseAsset.name) { 68 | compileState.baseAsset.inputStream.text 69 | } 70 | else { 71 | String assetPath = AssetHelper.normalizePath("${compileState.baseAsset.parentPath}/${filePath}") 72 | AssetFile referenceFile = AssetHelper.fileForFullName(assetPath) 73 | 74 | if (referenceFile) { 75 | CacheManager.addCacheDependency(compileState.baseAsset.path, referenceFile) 76 | } 77 | 78 | referenceFile?.inputStream?.text ?: '' 79 | } 80 | } 81 | 82 | static String writeFile(String name, String content) { 83 | localCompileState.get().result = content 84 | } 85 | 86 | } -------------------------------------------------------------------------------- /src/main/javascript/sys-shim.js: -------------------------------------------------------------------------------- 1 | module.exports = (function() { 2 | 3 | var TypeScriptProcessor = Java.type('com.craigburke.asset.TypeScriptProcessor'); 4 | 5 | return { 6 | args: [], 7 | newLine: '\n', 8 | useCaseSensitiveFileNames: false, 9 | write: function(s) { 10 | java.lang.System.out.println(s); 11 | }, 12 | readFile: function(fileName) { 13 | return TypeScriptProcessor.readFile(fileName); 14 | }, 15 | writeFile: function(fileName, data) { 16 | TypeScriptProcessor.writeFile(fileName, data); 17 | }, 18 | resolvePath: function(path) { return path; }, 19 | fileExists: function(path) { return true; }, 20 | directoryExists: function(path) { return true; }, 21 | createDirectory: function(directoryName) { }, 22 | getExecutingFilePath: function() { return ''; }, 23 | getCurrentDirectory: function() { return ''; }, 24 | readDirectory: function() { }, 25 | exit: function(exitCode) { } 26 | } 27 | })(); 28 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/asset-pipeline/asset.specs: -------------------------------------------------------------------------------- 1 | com.craigburke.asset.TypeScriptAssetFile 2 | com.craigburke.asset.TypeScriptDeclarationAssetFile -------------------------------------------------------------------------------- /src/test/groovy/com/craigburke/asset/TypeScriptProcessorSpec.groovy: -------------------------------------------------------------------------------- 1 | package com.craigburke.asset 2 | 3 | import asset.pipeline.AssetPipelineConfigHolder 4 | import asset.pipeline.GenericAssetFile 5 | import asset.pipeline.fs.FileSystemAssetResolver 6 | import spock.lang.Shared 7 | import spock.lang.Specification 8 | 9 | class TypeScriptProcessorSpec extends Specification { 10 | 11 | @Shared FileSystemAssetResolver resolver = new FileSystemAssetResolver('test', 'src/test/resources', false) 12 | 13 | void setup() { 14 | AssetPipelineConfigHolder.resolvers << resolver 15 | } 16 | 17 | def "compile a basic typescript file"() { 18 | when: 19 | String compiledJs = processor.process(assetFile.inputStream.text, assetFile) 20 | 21 | then: 22 | compiledJs.contains('var Greeter') 23 | 24 | where: 25 | processor = new TypeScriptProcessor() 26 | assetFile = getAssetFile('simple.ts') 27 | } 28 | 29 | def "references"() { 30 | when: 31 | processor.process(assetFile.inputStream.text, assetFile) 32 | 33 | then: 34 | notThrown(Exception) 35 | 36 | where: 37 | processor = new TypeScriptProcessor() 38 | assetFile = getAssetFile('references/references.ts') 39 | } 40 | 41 | GenericAssetFile getAssetFile(String path) { 42 | resolver.getAsset(path) as GenericAssetFile 43 | } 44 | 45 | } 46 | -------------------------------------------------------------------------------- /src/test/resources/references/foo/bar/foobar.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /src/test/resources/references/foo/foo.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /src/test/resources/references/foo/foo2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigburke/typescript-asset-pipeline/0709dc4a570a1093cb9ea3867d08017b199e4fb4/src/test/resources/references/foo/foo2.ts -------------------------------------------------------------------------------- /src/test/resources/references/references.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /src/test/resources/simple.ts: -------------------------------------------------------------------------------- 1 | class Greeter { 2 | greeting:string; 3 | 4 | constructor(message:string) { 5 | this.greeting = message; 6 | } 7 | 8 | greet() { 9 | return "Hello, " + this.greeting; 10 | } 11 | } --------------------------------------------------------------------------------