-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: refactoring gatsby node utils
- Loading branch information
1 parent
8fe98a8
commit bd19584
Showing
10 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
File renamed without changes.
3 changes: 1 addition & 2 deletions
3
www/utils/createPages.js → www/gatsby-node-functions/createPages.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
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,9 @@ | ||
const createPages = require('./createPages'); | ||
const onCreateNode = require('./onCreateNode'); | ||
const onCreateWebpackConfig = require('./onCreateWebpackConfig'); | ||
const createCssUtilityClassNodes = require('./createCssUtilityClassNodes'); | ||
const onCreatePage = require('./onCreatePage'); | ||
|
||
module.exports = { | ||
createPages, onCreateNode, onCreateWebpackConfig, createCssUtilityClassNodes, onCreatePage, | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,6 @@ | ||
const { retrieveRootFiles } = require('./component-page-tabs'); | ||
const { getThemesSCSSVariables, processComponentSCSSVariables } = require('./theme-variables'); | ||
|
||
module.exports = { | ||
retrieveRootFiles, getThemesSCSSVariables, processComponentSCSSVariables, | ||
}; |
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