-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Variable global will not works in node #834
Comments
@substack related issue in PostCSS: postcss/postcss#58 |
@substack I can send PR, but I didn’t found module, who wrap |
ai
changed the title
Variable gloabl will not works in node
Variable global will not works in node
Jul 23, 2014
Did you try to build it with
|
@andreypopp didn’t help. Same issue. Option |
Fixed in 5.0.3. |
ghost
closed this as completed
Jul 24, 2014
This was referenced Feb 19, 2016
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use browserify to build standalone build of Autoprefixer. Any some project uses standalone build in
node
.New Autoprefixer will include traceur and I find problem with it, browserufy and node.
When somebody uses
global
browserify will pack code into:But
node
has noself
andwindow
, so traceur fall withObject.defineProperty called on non-object
because it calldefineProperty
onglobal.Object
.Why not:
The text was updated successfully, but these errors were encountered: