Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: charto/classy-mst
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.2
Choose a base ref
...
head repository: charto/classy-mst
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 648 additions and 251 deletions.
  1. +1 −0 .gitignore
  2. +1 −0 .npmignore
  3. +8 −0 .travis.yml
  4. +1 −1 LICENSE
  5. +234 −116 README.md
  6. +0 −1 classy-mst.ts
  7. +14 −11 package.json
  8. +1 −0 rollup.config.js
  9. +3 −0 src/.vscode/settings.json
  10. +30 −0 src/checkver.js
  11. +268 −37 src/classy-mst.ts
  12. +0 −8 src/fix-amd.js
  13. +10 −2 src/index.ts
  14. +0 −20 src/ts-amd.json
  15. +4 −2 src/tsconfig.json
  16. +3 −0 test/.vscode/settings.json
  17. +69 −52 test/test.ts
  18. +1 −1 test/tsconfig.json
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
node_modules/
dist/
package-lock.json
*.lock
*.log.*
*.log
*.tgz
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ test/
src/
package-lock.json
.travis.yml
*.lock
*.log.*
*.log
*.tgz
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js

node_js:
- "12"
- "10"
- "8"
- "6"
- "4"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 BusFaster Ltd
Copyright (c) 2017- BusFaster Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Loading