Commit ae6b51b1 authored by Nikolay Gromov's avatar Nikolay Gromov

start

parents
# Настройки редактора
#
# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
build/fonts
build/css
build/img
build/js
build/*.html
.Saved/
_arc/
bower_components/
node_modules/
.DS_Store
*.log
*.sublime-*
*.rar
*.txt
*.zip
.idea
ex_files
Thumbs.db
# Стартовый проект с gulp
Установка: выполнить в папке проекта: `npm i`.
Использование: `gulp` и другие команды, описанные в `gulpfile.js`.
Если консоль пишет, что команды `gulp` нет, поставить его глобально: `npm install --global gulp-cli`.
Это результат сборки. Не редактируйте файлы в этой папке — все такие изменения будут затёрты при следующей сборке проекта.
'use strict';
const gulp = require('gulp');
gulp.task('hello', function() {
console.log("hello");
});
\ No newline at end of file
{
"name": "start-project--gulp",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nikolay Gromov",
"license": "MIT",
"devDependencies": {
"gulp": "^3.9.0"
}
}
Это исходные файлы проекта, из которых делается сборка. Смотреть нужно сборку.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment