Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit aee8544

Browse files
committed
Merge pull request #38 from groupon/apply-nlm-generator
Apply latest nlm generator
2 parents 5806741 + 4c66beb commit aee8544

22 files changed

+77
-58
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
node_modules
1+
node_modules/
2+
npm-debug.log
3+
/tmp
24

35
build

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org

.travis.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: node_js
2-
sudo: false
32
node_js:
43
- '0.10'
54
- '4'
@@ -8,6 +7,18 @@ env:
87
addons:
98
apt:
109
sources:
11-
- ubuntu-toolchain-r-test
10+
- ubuntu-toolchain-r-test
1211
packages:
13-
- g++-4.8
12+
- g++-4.8
13+
before_install:
14+
- npm install -g npm@latest-2
15+
before_deploy:
16+
- 'git config --global user.email "[email protected]"'
17+
- 'git config --global user.name "Sean Massa"'
18+
deploy:
19+
provider: script
20+
script: ./node_modules/.bin/nlm release
21+
skip_cleanup: true
22+
'on':
23+
branch: master
24+
node: '4'

lib/alert_api.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Generated by CoffeeScript 1.9.3
21

32
/*
43
Copyright (c) 2013, Groupon, Inc.

lib/cookie_api.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Generated by CoffeeScript 1.9.3
21

32
/*
43
Copyright (c) 2013, Groupon, Inc.

lib/debug_api.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Generated by CoffeeScript 1.9.3
21

32
/*
43
Copyright (c) 2013, Groupon, Inc.

lib/element.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Generated by CoffeeScript 1.9.3
21

32
/*
43
Copyright (c) 2013, Groupon, Inc.
@@ -158,11 +157,11 @@ module.exports = Element = (function() {
158157
})();
159158

160159
elementOrNull = Element.elementOrNull = function(create) {
161-
var error;
160+
var error, error1;
162161
try {
163162
return create();
164-
} catch (_error) {
165-
error = _error;
163+
} catch (error1) {
164+
error = error1;
166165
if (NOT_FOUND_MESSAGE.test(error.toString())) {
167166
return null;
168167
}

lib/element_api.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Generated by CoffeeScript 1.9.3
21

32
/*
43
Copyright (c) 2013, Groupon, Inc.

lib/http.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// Generated by CoffeeScript 1.9.3
21

32
/*
43
Copyright (c) 2013, Groupon, Inc.

0 commit comments

Comments
 (0)