Skip to content

Commit e18ce16

Browse files
authored
Merge pull request #164 from EnTeQuAk/support-node6
Relax the engines support to include node 6.9.* for fluent-syntax
2 parents fee9cbf + 8f12b32 commit e18ce16

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
sudo: false
22
language: node_js
3-
script: make deps && make dist
3+
script:
4+
- make deps && make dist
5+
- make -C fluent-syntax test-without-babel-polyfill
46
node_js:
7+
- "6"
58
- "8"
69
cache:
710
directories: node_modules

fluent-syntax/makefile

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ compat.js: $(SOURCES)
2323
--output.file $@
2424
@echo -e " $(OK) $@ built"
2525

26+
.PHONY: test-without-babel-polyfill
27+
test-without-babel-polyfill:
28+
@mocha --recursive --ui tdd --require babel-register test/
29+
2630
clean:
2731
@rm -f $(PACKAGE).js compat.js
2832
@echo -e " $(OK) clean"

fluent-syntax/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444

4545
],
4646
"engines": {
47-
"node": ">=8.9.0"
47+
"node": ">=6.9.0"
4848
}
4949
}

0 commit comments

Comments
 (0)