Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
Refactor build to generate UMD and AMD artifacts (#337)
Browse files Browse the repository at this point in the history
* Build adjusted to generate dist directory via webpack

* Added dist

* More tasks

* cleanup

* Move to rollup

* Fixed Babel issues

* Removed dist

* Add var declarations and consolidate src code

* Added more tasks

* hopscotch-ryanone@0.1.0

* hopscotch and added shell commands

* Added dist

* Update .travis.yml - Node.js versions and notifications

* Fix syntax error

* Added webpack (peer dependency asked of by babel-loader)

* Fixed AMD output and updated archives

* Added testing of AMD artifact

* Revert changes to archives/ and dist/

* Restored original 0.2.8 files in archives/

* Remove CI testing against Node 8
  • Loading branch information
ryanone authored and timlindvall committed May 31, 2017
1 parent 04aabd6 commit 05c3014
Show file tree
Hide file tree
Showing 7 changed files with 4,767 additions and 2,308 deletions.
13 changes: 13 additions & 0 deletions .babelrc
@@ -0,0 +1,13 @@
{
"presets": [
[
"latest",
{
"es2015": {
"modules": false
}
}
]
],
"plugins": ["external-helpers"]
}
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,6 +2,7 @@ node_modules
tmp
.idea
*.iml
_SpecRunner.amd.html
_SpecRunner.html
.grunt
.vscode
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,9 +1,9 @@
language: node_js
node_js:
- "0.10"
- "4"
- "6"
notifications:
email:
- kodnous@linkedin.com
- tlindvall@linkedin.com
before_install:
- npm install -g grunt-cli

0 comments on commit 05c3014

Please sign in to comment.