carte-server 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/carte/client/tasks.coffee +3 -2
- data/package.json +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99769a564e742a16255fc44868be47a9261426b8
|
4
|
+
data.tar.gz: 0ac68e8f661307f16bfa56304458172a88d61d76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b693433479183047c08235018ba8b458a2034e60ff86ef25c5810ebf968d78b989d5727c13db32aa8d12ce95b4bfc43f23591d226a66cde3caaf3c1dea2cb03a
|
7
|
+
data.tar.gz: 6991424bc9053579af6c18c5f06362581de4d021924e03fdb3a79337609c818a30f2818b0682ffeb2c981a2c26ee57dff5671609aea56a1833d0d8f8be23a9f3
|
@@ -15,6 +15,7 @@ _ = require 'lodash'
|
|
15
15
|
jade = require 'gulp-jade'
|
16
16
|
rename = require 'gulp-rename'
|
17
17
|
manifest = require 'gulp-manifest'
|
18
|
+
runSequence = require 'run-sequence'
|
18
19
|
|
19
20
|
module.exports = class Carte
|
20
21
|
watching: false
|
@@ -24,8 +25,8 @@ module.exports = class Carte
|
|
24
25
|
fs.writeFileSync(__dirname + '/../shared/custom.json', JSON.stringify(custom))
|
25
26
|
|
26
27
|
gulp.task 'watching', => @watching = true
|
27
|
-
gulp.task 'build', ['build:html', 'build:script', 'build:manifest'
|
28
|
-
gulp.task 'watch', ['watching', 'build:html', 'build:script', 'build:manifest'
|
28
|
+
gulp.task 'build', ()-> runSequence ['build:html', 'build:script'], 'build:manifest'
|
29
|
+
gulp.task 'watch', ()-> runSequence ['watching', 'build:html', 'build:script'], 'build:manifest'
|
29
30
|
|
30
31
|
gulp.task 'build:html', =>
|
31
32
|
_config = require('./config')
|
data/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "carte-client",
|
3
3
|
"description": "something like dictionary, wiki, or information card",
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.5",
|
5
5
|
"main": "lib/carte.coffee",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
@@ -44,6 +44,7 @@
|
|
44
44
|
"react": "^0.13.2",
|
45
45
|
"react-bootstrap": "^0.21.0",
|
46
46
|
"react-tagsinput": "^1.3.2",
|
47
|
+
"run-sequence": "^1.1.0",
|
47
48
|
"string": "^3.1.1",
|
48
49
|
"vinyl-source-stream": "^1.1.0",
|
49
50
|
"watchify": "^3.1.2"
|