We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fee9cbf + 8f12b32 commit e18ce16Copy full SHA for e18ce16
.travis.yml
@@ -1,7 +1,10 @@
1
sudo: false
2
language: node_js
3
-script: make deps && make dist
+script:
4
+ - make deps && make dist
5
+ - make -C fluent-syntax test-without-babel-polyfill
6
node_js:
7
+ - "6"
8
- "8"
9
cache:
10
directories: node_modules
fluent-syntax/makefile
@@ -23,6 +23,10 @@ compat.js: $(SOURCES)
23
--output.file $@
24
@echo -e " $(OK) $@ built"
25
26
+.PHONY: test-without-babel-polyfill
27
+test-without-babel-polyfill:
28
+ @mocha --recursive --ui tdd --require babel-register test/
29
+
30
clean:
31
@rm -f $(PACKAGE).js compat.js
32
@echo -e " $(OK) clean"
fluent-syntax/package.json
@@ -44,6 +44,6 @@
44
45
],
46
"engines": {
47
- "node": ">=8.9.0"
+ "node": ">=6.9.0"
48
}
49
0 commit comments