Skip to content

Commit

Permalink
Started refactor again
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyreilly committed Oct 26, 2016
1 parent 1cbb414 commit 69c6026
Show file tree
Hide file tree
Showing 41 changed files with 1,073 additions and 809 deletions.
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:
- [email protected]
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

0 comments on commit 69c6026

Please sign in to comment.