https://github.com/sandinmyjoints/browserify-shim-repro
Browserify's require, browser aliases, and browserify-shim do not mix.
https://github.com/sandinmyjoints/browserify-shim-repro
Last synced: 3 months ago
JSON representation
Browserify's require, browser aliases, and browserify-shim do not mix.
- Host: GitHub
- URL: https://github.com/sandinmyjoints/browserify-shim-repro
- Owner: sandinmyjoints
- Created: 2015-01-16T01:26:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-16T01:28:43.000Z (over 10 years ago)
- Last Synced: 2025-02-08T09:12:58.660Z (4 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Available scripts:
bundle:norequire
browserify -e entry.js -o bundle.js && node bundle.js
bundle:require
browserify -r 'needsShimName' -e entry.js -o bundle.js && node bundle.js**`bundle:norequire` works. `bundle:require` does not.**