-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaces `--dashes` option with proper `--localsConvention` option that matches PostCSS and other libraries. Changes the default to `dashesOnly` which roughly matches the previous `--dashes` implementation. BREAKING CHANGE: CLI change Adds `lodash.camelcase` to match PostCSS implementation. +semver:minor (0.x semver) Closes #2
- Loading branch information
Showing
16 changed files
with
270 additions
and
90 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Generated from `src/fixtures/casing/casing.css` by css-typed at $TIME | ||
|
||
const lowercase: string; | ||
const UPPERCASE: string; | ||
const uppercase: string; | ||
const camelCase: string; | ||
const PascalCase: string; | ||
const pascalCase: string; | ||
const _kebabcase: string; | ||
const kebabCase: string; | ||
const snake_case: string; | ||
const snakeCase: string; | ||
const SCREAM_CASE: string; | ||
const screamCase: string; | ||
const _TRAINCASE: string; | ||
const trainCase: string; | ||
|
||
export = { | ||
lowercase, | ||
UPPERCASE, | ||
uppercase, | ||
camelCase, | ||
PascalCase, | ||
pascalCase, | ||
"kebab-case": _kebabcase, | ||
kebabCase, | ||
snake_case, | ||
snakeCase, | ||
SCREAM_CASE, | ||
screamCase, | ||
"TRAIN-CASE": _TRAINCASE, | ||
trainCase, | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Generated from `src/fixtures/casing/casing.css` by css-typed at $TIME | ||
|
||
export const lowercase: string; | ||
export const uppercase: string; | ||
export const camelCase: string; | ||
export const pascalCase: string; | ||
export const kebabCase: string; | ||
export const snakeCase: string; | ||
export const screamCase: string; | ||
export const trainCase: string; |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* Example classes with various casing conventions. */ | ||
|
||
.lowercase, | ||
.UPPERCASE, | ||
.camelCase, | ||
.PascalCase, | ||
.kebab-case, | ||
.snake_case, | ||
.SCREAM_CASE, | ||
.TRAIN-CASE { | ||
display: flex; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Generated from `src/fixtures/casing/casing.css` by css-typed at $TIME | ||
|
||
const lowercase: string; | ||
const UPPERCASE: string; | ||
const camelCase: string; | ||
const PascalCase: string; | ||
const _kebabcase: string; | ||
const kebabCase: string; | ||
const snake_case: string; | ||
const SCREAM_CASE: string; | ||
const _TRAINCASE: string; | ||
const TRAINCASE: string; | ||
|
||
export = { | ||
lowercase, | ||
UPPERCASE, | ||
camelCase, | ||
PascalCase, | ||
"kebab-case": _kebabcase, | ||
kebabCase, | ||
snake_case, | ||
SCREAM_CASE, | ||
"TRAIN-CASE": _TRAINCASE, | ||
TRAINCASE, | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Generated from `src/fixtures/casing/casing.css` by css-typed at $TIME | ||
|
||
export const lowercase: string; | ||
export const UPPERCASE: string; | ||
export const camelCase: string; | ||
export const PascalCase: string; | ||
export const kebabCase: string; | ||
export const snake_case: string; | ||
export const SCREAM_CASE: string; | ||
export const TRAINCASE: string; |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Generated from `src/fixtures/casing/casing.css` by css-typed at $TIME | ||
|
||
const lowercase: string; | ||
const UPPERCASE: string; | ||
const camelCase: string; | ||
const PascalCase: string; | ||
const _kebabcase: string; | ||
const snake_case: string; | ||
const SCREAM_CASE: string; | ||
const _TRAINCASE: string; | ||
|
||
export = { | ||
lowercase, | ||
UPPERCASE, | ||
camelCase, | ||
PascalCase, | ||
"kebab-case": _kebabcase, | ||
snake_case, | ||
SCREAM_CASE, | ||
"TRAIN-CASE": _TRAINCASE, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.