This file contains hidden or 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
| import gulp from 'gulp'; | |
| import zip from 'gulp-zip'; | |
| import { exec } from 'child_process' | |
| import pkg from './package.json' assert {type: 'json'} | |
| gulp.task('headers', function(done) { | |
| exec('php .\vendor\bin\header-stamp --exclude=vendor,node_modules,dist', (error, stdout, stderr) => { | |
| if(error) { | |
| console.error('exec error: ' + stderr); | |
| return; |
This file contains hidden or 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
| let gulp = require('gulp'); | |
| let ts = require('gulp-typescript'); | |
| let less = require('gulp-less'); | |
| let path = require('path'); | |
| let watch = require('gulp-watch'); | |
| gulp.task('ts', function() { | |
| return gulp.src('src/**/*.ts') | |
| .pipe(ts({ | |
| noImplicitAny: true |
This file contains hidden or 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
| version: '3.3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=presta | |
| - MYSQL_DATABASE=presta |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <omegat> | |
| <preference version="1.0"> | |
| <docking_layout></docking_layout> | |
| <sb_progress_mode>DEFAULT</sb_progress_mode> | |
| <most_recent_projects_size>5</most_recent_projects_size> | |
| <display_modification_info>all</display_modification_info> | |
| <lt_disabled>false</lt_disabled> | |
| <auto_save_interval>180</auto_save_interval> | |
| <scripts_dir>C:\Program Files (x86)\OmegaT\scripts</scripts_dir> |
This file contains hidden or 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
| <VirtualHost 127.0.0.2:80> | |
| ServerName prestashop.dev.pl | |
| ServerAlias www.prestashop.dev.pl | |
| DocumentRoot "C:/xampp/htdocs/prestashop.dev.pl" | |
| <Directory "C:/xampp/htdocs/prestashop.dev.pl"> | |
| Options All | |
| AllowOverride All | |
| Require all granted | |
| </Directory> | |
| </VirtualHost> |