-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding linting, replacing Makefile with package scripts (#1)
* testing travis build with both node and deno * fixing yarn install error on travis linux machine * adding linting * fixing lint error * replacing Makefile with node package scripts; fixing travis build script * updating terser command * rebuild * printing deno version in travis build
- Loading branch information
1 parent
6f7cbc2
commit 7ce5576
Showing
8 changed files
with
1,427 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
language: python | ||
language: node_js | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
install: | ||
- curl -L https://deno.land/x/install/install.py | python - v0.2.3 | ||
- export PATH="$HOME/.deno/bin:$PATH" | ||
- yarn install --ignore-engines | ||
|
||
script: | ||
- make tests | ||
- deno --version | ||
- yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,6 @@ export default { | |
cjs(), | ||
alias({ | ||
path: path.resolve(__dirname, 'src/path.js') | ||
}), | ||
}) | ||
] | ||
} |
Oops, something went wrong.