You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Gulp Package for Magento 1.x
1
+
# Gulp Package for Magento 2.x
2
2
3
-
This is a simple skin package for Magento 1 to let you implement the following features to make you able use a quicker and fancy method of coding.
3
+
This is a simple skin package for Magento 2.x to let you implement the following features to make you able use a quicker and fancy method of coding.
4
4
5
5
- Gulp
6
6
- Sass
@@ -35,7 +35,9 @@ Let's create a new skin package on your magento2 project.
35
35
```sh
36
36
$ cd [magento-root-directory]
37
37
$ cd app/design/frontend/[your-vendor-name]/[your-theme-name]/
38
-
$ git clone [git-repo-url] .
38
+
$ git init
39
+
$ git remote add remote [git-repo-url]
40
+
$ git pull remote master
39
41
$ npm install -d
40
42
```
41
43
All the dependences will be downloaded to a new directory called node_modules, which should be added to your .gitignore file (in case you are using git).
@@ -62,7 +64,7 @@ To make this work on Magento, you need to add css/styles.css and js/script.js at
0 commit comments