-
Notifications
You must be signed in to change notification settings - Fork 46
Add source
property to position
#53
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
Conversation
This allows for source map generation when multiple source files are used to create a single output file. It could something simple as concatenating several files, or something more complex such as joining rules with the same selector.
dope! |
Add `source` property to `position`
on second thought it might be nicer to do this at a more root level node, but for now it should be ok |
@@ -25,7 +25,8 @@ | |||
"end": { | |||
"line": 2, | |||
"column": 21 | |||
} | |||
}, | |||
"source": "keyframes.vendor.json" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hahaha copy pasta gone wrong?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops. Does that break the test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, no worries i fixed it
This allows for source map generation when multiple source files are used
to create a single output file. It could something simple as concatenating
several files, or something more complex such as joining rules with the
same selector.