Skip to content
This repository has been archived by the owner on Aug 9, 2022. It is now read-only.

Commit

Permalink
use lisp-case to avoid issues with case sensitive filesystems
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvestre Herrera committed May 24, 2016
1 parent ca2767d commit b599b86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "onscreen",
"version": "1.1.2",
"description": "A light library that does stuff when the matched elements enter or leave the viewport",
"main": "dist/onScreen.umd.js",
"jsnext:main": "dist/onScreen.es6.js",
"main": "dist/on-screen.umd.js",
"jsnext:main": "dist/on-screen.es6.js",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
"postbuild": "uglifyjs -c --screw-ie8 dist/OnScreen.umd.js -o dist/OnScreen.umd.min.js --source-map dist/OnScreen.umd.min.map",
"postbuild": "uglifyjs -c --screw-ie8 dist/on-screen.umd.js -o dist/on-screen.umd.min.js --source-map dist/on-screen.umd.min.map",
"prepublish": "npm run build",
"pretest": "rollup -c rollup.config.test.js",
"test": "mocha-phantomjs -v 800x600 http://localhost:8080/test/test-runner.html",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.es6.js
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;
2 changes: 1 addition & 1 deletion rollup.config.umd.js
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;

0 comments on commit b599b86

Please sign in to comment.