-
-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #313 from chalbert/fix/prefix-leading-character
Ensure sc- prefix is always added
- Loading branch information
Showing
5 changed files
with
29 additions
and
31 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
12 changes: 6 additions & 6 deletions
12
test/fixtures/add-identifier-with-top-level-import-paths-and-named-import/output.js
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,27 +1,27 @@ | ||
import { styled } from '@example/example'; | ||
const Test = styled.div.withConfig({ | ||
displayName: "Test", | ||
componentId: "elhbfv-0" | ||
componentId: "sc-elhbfv-0" | ||
})`width:100%;`; | ||
const Test2 = true ? styled.div.withConfig({ | ||
displayName: "Test2", | ||
componentId: "elhbfv-1" | ||
componentId: "sc-elhbfv-1" | ||
})`` : styled.div.withConfig({ | ||
displayName: "Test2", | ||
componentId: "elhbfv-2" | ||
componentId: "sc-elhbfv-2" | ||
})``; | ||
const styles = { | ||
One: styled.div.withConfig({ | ||
displayName: "One", | ||
componentId: "elhbfv-3" | ||
componentId: "sc-elhbfv-3" | ||
})`` | ||
}; | ||
let Component; | ||
Component = styled.div.withConfig({ | ||
displayName: "Component", | ||
componentId: "elhbfv-4" | ||
componentId: "sc-elhbfv-4" | ||
})``; | ||
const WrappedComponent = styled(Inner).withConfig({ | ||
displayName: "WrappedComponent", | ||
componentId: "elhbfv-5" | ||
componentId: "sc-elhbfv-5" | ||
})``; |
18 changes: 9 additions & 9 deletions
18
test/fixtures/annotate-styled-calls-with-pure-comments/output.js
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
14 changes: 7 additions & 7 deletions
14
test/fixtures/minify-single-line-comments-with-interpolations/output.js
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,29 +1,29 @@ | ||
import styled from 'styled-components'; | ||
const Test1 = styled.div.withConfig({ | ||
displayName: "code__Test1", | ||
componentId: "kc0mjf-0" | ||
componentId: "sc-kc0mjf-0" | ||
})(["width:100%;"]); | ||
const Test2 = styled.div.withConfig({ | ||
displayName: "code__Test2", | ||
componentId: "kc0mjf-1" | ||
componentId: "sc-kc0mjf-1" | ||
})(["width:100%;"]); | ||
const Test3 = styled.div.withConfig({ | ||
displayName: "code__Test3", | ||
componentId: "kc0mjf-2" | ||
componentId: "sc-kc0mjf-2" | ||
})(["width:100%;", ";"], 'red'); | ||
const Test4 = styled.div.withConfig({ | ||
displayName: "code__Test4", | ||
componentId: "kc0mjf-3" | ||
componentId: "sc-kc0mjf-3" | ||
})(["width:100%;"]); | ||
const Test5 = styled.div.withConfig({ | ||
displayName: "code__Test5", | ||
componentId: "kc0mjf-4" | ||
componentId: "sc-kc0mjf-4" | ||
})(["width:100%;"]); | ||
const Test6 = styled.div.withConfig({ | ||
displayName: "code__Test6", | ||
componentId: "kc0mjf-5" | ||
componentId: "sc-kc0mjf-5" | ||
})(["background:url(\"https://google.com\");width:100%;", " "], 'green'); | ||
const Test7 = styled.div.withConfig({ | ||
displayName: "code__Test7", | ||
componentId: "kc0mjf-6" | ||
componentId: "sc-kc0mjf-6" | ||
})(["background:url(\"https://google.com\");width:", ";", " height:", ";"], p => p.props.width, 'green', p => p.props.height); |
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,27 +1,27 @@ | ||
import s from "styled-components"; | ||
const Test = s.div.withConfig({ | ||
displayName: "Test", | ||
componentId: "wyof43-0" | ||
componentId: "sc-wyof43-0" | ||
})`width:100%;`; | ||
const Test2 = true ? s.div.withConfig({ | ||
displayName: "Test2", | ||
componentId: "wyof43-1" | ||
componentId: "sc-wyof43-1" | ||
})`` : s.div.withConfig({ | ||
displayName: "Test2", | ||
componentId: "wyof43-2" | ||
componentId: "sc-wyof43-2" | ||
})``; | ||
const styles = { | ||
One: s.div.withConfig({ | ||
displayName: "One", | ||
componentId: "wyof43-3" | ||
componentId: "sc-wyof43-3" | ||
})`` | ||
}; | ||
let Component; | ||
Component = s.div.withConfig({ | ||
displayName: "Component", | ||
componentId: "wyof43-4" | ||
componentId: "sc-wyof43-4" | ||
})``; | ||
const WrappedComponent = s(Inner).withConfig({ | ||
displayName: "WrappedComponent", | ||
componentId: "wyof43-5" | ||
componentId: "sc-wyof43-5" | ||
})``; |