This repository has been archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use lisp-case to avoid issues with case sensitive filesystems
- Loading branch information
Silvestre Herrera
committed
May 24, 2016
1 parent
ca2767d
commit b599b86
Showing
3 changed files
with
5 additions
and
5 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
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,6 +1,6 @@ | ||
import config from './rollup.config'; | ||
|
||
config.format = 'es6'; | ||
config.dest = 'dist/OnScreen.es6.js'; | ||
config.dest = 'dist/on-screen.es6.js'; | ||
|
||
export default config; |
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,7 +1,7 @@ | ||
import config from './rollup.config'; | ||
|
||
config.format = 'umd'; | ||
config.dest = 'dist/OnScreen.umd.js'; | ||
config.dest = 'dist/on-screen.umd.js'; | ||
config.moduleName = 'OnScreen'; | ||
|
||
export default config; |