Skip to content

Instantly share code, notes, and snippets.

View MayakoAelys's full-sized avatar
🏳️‍🌈

Aelys MayakoAelys

🏳️‍🌈
  • Belgium
View GitHub Profile
using System;
using System.Net.Http;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace TestTwitterAPI.API
{
public class APIClient
@MayakoAelys
MayakoAelys / gulpfile.js
Created March 22, 2018 09:39
TS -> JS + MAP, using gulp, gulp-typescript (without bundling)
var ts = require('gulp-typescript');
var destJS = './www/dist/js';
var srcTS = './src/ts';
// TS to JS (without bundling)
// gulp task allowing Typescript debug when JS files are transpiled in another folder
// ref.: https://www.npmjs.com/package/gulp-typescript
gulp.task('tsc', function(){
gutil.log("=====================");
gutil.log("TypeScript --> JavaScript (other files)");