Skip to content

Commit 0c26c02

Browse files
committed
Use local gulp
1 parent dcb4f40 commit 0c26c02

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## HEAD
44

55
- Use install scripts in `bin` directory.
6+
- Use local gulp
67

78
## 1.0.1
89

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,27 +103,26 @@ First, follow the normal install steps if you haven't already.
103103
Then, install the development dependences via [npm] with
104104

105105
```bash
106-
$ [sudo] npm install --global gulp
107106
$ npm install
108107
```
109108

110109
While in a tmux session, enter development mode with
111110

112111
```bash
113-
$ gulp dev
112+
$ npm run dev
114113
```
115114

116115
After entering development mode,
117116
have gulp watch for changes with
118117

119118
```bash
120-
$ gulp
119+
$ npm run watch
121120
```
122121

123122
To switch out of development mode run
124123

125124
```bash
126-
$ gulp nodev
125+
$ npm run nodev
127126
```
128127

129128
[Gulp]: http://gulpjs.com/

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"type": "git",
88
"url": "https://github.com/rxrc/tmuxrc.git"
99
},
10+
"scripts": {
11+
"dev": "gulp dev",
12+
"nodev": "gulp nodev",
13+
"watch": "gulp watch"
14+
},
1015
"keywords": [
1116
"tmux",
1217
"tmuxrc",

0 commit comments

Comments
 (0)