Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
designeo-gulp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Designeo
designeo-gulp
Commits
6c260d7f
Commit
6c260d7f
authored
Aug 07, 2017
by
Stanislav Fifik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.designeo.cz:designeo/designeo-gulp
parents
5d7e3c98
2673e680
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
README.md
README.md
+41
-0
No files found.
README.md
View file @
6c260d7f
# Designeo gulp
pridat do package.json devDependencies:
```
"designeo-gulp": "git+ssh://git@git.designeo.cz:designeo/designeo-gulp.git#master",```
a `npm install`
## Symfony
prepsat gulpfile.js na:
```
js
var desGulp = require('designeo-gulp');
desGulp.init(__dirname);
desGulp.symfony();
```
## Custom
```
js
var desGulp = require('designeo-gulp');
desGulp.init(__dirname);
// set task_name, path to entrypoint and destination folder
desGulp.js('task_name', ['./path/to/entrypoint.js'], './destination/js/');
desGulp.css('task_name', ['./path/to/entrypoint.css'], './destination/css/');
// Move build from task dependencies (second param) and run it inside after setting 'watch'
gulp.task('default', [], function() {
desGulp.argv.watch = true;
gulp.run('build');
...
});
```
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment