Skip to content
This repository was archived by the owner on Nov 12, 2022. It is now read-only.

Commit 55bc112

Browse files
committed
fixes
1 parent e0c113d commit 55bc112

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules/
22
_test/
3-
TODO.md
3+
TODO.md
4+
lib/

Gruntfile.coffee

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ module.exports = (grunt) ->
66
config.livescript =
77
compile:
88
expand: true
9-
flatten: true
10-
src: ['src/*.ls']
9+
cwd: 'src/'
10+
src: ['**/*.ls']
1111
dest: 'lib/'
1212
ext: '.js'
1313

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "channeladvisor-localdb",
33
"version": "0.0.1",
44
"description": "library that keeps the local inventory database updated",
5-
"main": "index.js",
5+
"main": "lib/index.js",
66
"scripts": {
77
"prepublish": "grunt build",
88
"test": "mocha --compilers ls:livescript"

src/updaters/catalog.ls

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ module.exports = (comment, date-to-fetch-to, force = no) ->
189189
###
190190
# Pages generator
191191
(next) ~>
192-
pages = !~>*
192+
pages = ~>*
193193
loop
194194
conf =
195195
accountID: @account

src/updaters/updates.ls

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ module.exports = (comment) ->
139139
###
140140
# Pages generator
141141
(next) ~>
142-
pages = !~>*
142+
pages = ~>*
143143
loop
144144
conf =
145145
accountID: @account

0 commit comments

Comments
 (0)