-
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.
We only build the modules version and not the cjs as not for use in node. Other improvements in found in testing and building.
- Loading branch information
1 parent
34cb72a
commit ea74fcb
Showing
36 changed files
with
480 additions
and
394 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
'@committed/eslint-config': minor | ||
'@committed/ds-utilities': minor | ||
'@committed/ds-tsconfig': minor | ||
'@committed/ds-storybook': minor | ||
'@committed/ds-colors': minor | ||
'@committed/ds-tokens': minor | ||
'@committed/ds-example': minor | ||
'@committed/ds': minor | ||
'@committed/ds-ss': minor | ||
'@committed/ds-next': minor | ||
--- | ||
|
||
Updating the build to use only modules |
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
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
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,25 +1,35 @@ | ||
import { componentsConfig } from '@committed/ds' | ||
import { componentsConfig } from '@committed/ds/config' | ||
|
||
export default componentsConfig({ | ||
include: [ | ||
'../../preset/src/**/*.ts*', | ||
'./app/**/*.{js,jsx,ts,tsx}', | ||
'./src/**/*.{js,jsx,ts,tsx}', | ||
], | ||
exclude: [], | ||
hooks: { | ||
'config:resolved': (conf) => { | ||
console.log('🐼 config:resolve') | ||
}, | ||
'config:change': (conf) => { | ||
console.log( | ||
'🐼 config:change', | ||
JSON.stringify(conf?.theme?.recipes, null, 5), | ||
) | ||
}, | ||
'generator:css': (file, _css) => { | ||
console.log('🐼 generator:css', file) | ||
// console.log('🐼 generator:css', _css) | ||
export default componentsConfig( | ||
{ | ||
include: [ | ||
'../../preset/src/**/*.ts*', | ||
'./app/**/*.{js,jsx,ts,tsx}', | ||
'./src/**/*.{js,jsx,ts,tsx}', | ||
], | ||
hooks: { | ||
'config:resolved': (conf) => { | ||
console.log('🐼 config:resolve') | ||
}, | ||
'config:change': (conf) => { | ||
console.log( | ||
'🐼 config:change', | ||
JSON.stringify(conf?.theme?.recipes, null, 5), | ||
) | ||
}, | ||
'generator:css': (file, _css) => { | ||
console.log('🐼 generator:css', file) | ||
// console.log('🐼 generator:css', _css) | ||
}, | ||
}, | ||
}, | ||
}) | ||
{ | ||
primary: 'plum', | ||
secondary: 'sky', | ||
neutral: 'mauve', | ||
info: 'sky', | ||
warn: 'orange', | ||
error: 'red', | ||
success: 'jade', | ||
}, | ||
) |
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
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
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
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
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
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
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
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
Oops, something went wrong.