Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Started refactor #337

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/*.js
!index.js
/src/*.js
/*.d.ts
/*.log
*.js.map
Expand All @@ -8,4 +10,5 @@ npm-debug.log
/test/execution-tests/**/typings
!/test/**/expectedOutput-*/**
/node_modules
!build.js
/dist
!build.js
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.ts
test
.*
src
typings
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
language: node_js
node_js:
- "4.0"
- "5.0"
- "6.0"
sudo: false
install:
- npm install npm -g
- npm install
- npm run build
- npm install $TYPESCRIPT
env:
- TYPESCRIPT=typescript@1.6.2
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ environment:
install:
- ps: Install-Product node $env:nodejs_version
- npm install
- npm run build
- npm install %TYPESCRIPT%
test_script:
- node --version
- npm --version
- npm run build
- npm test
build: off
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var loader = require('./dist');

module.exports = loader;
Loading