| |
|
|
| const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin'); |
|
|
| const env = require('./config/env.json'); |
| const { createSuperBlockIntroPages } = require('./utils/gatsby'); |
|
|
| exports.createPages = async function createPages({ |
| actions, |
| graphql, |
| reporter |
| }: any) { |
| if (!env.algoliaAPIKey || !env.algoliaAppId) { |
| if (process.env.FREECODECAMP_NODE_ENV === 'production') { |
| throw new Error( |
| 'Algolia App id and API key are required to start the client!' |
| ); |
| } else { |
| reporter.info( |
| 'Algolia keys missing or invalid. Required for search to yield results.' |
| ); |
| } |
| } |
|
|
| if (!env.stripePublicKey) { |
| if (process.env.FREECODECAMP_NODE_ENV === 'production') { |
| throw new Error('Stripe public key is required to start the client!'); |
| } else { |
| reporter.info( |
| 'Stripe public key is missing or invalid. Required for Stripe integration.' |
| ); |
| } |
| } |
|
|
| const { createPage } = actions; |
|
|
| const result = await graphql(` |
| { |
| allSuperBlockStructure { |
| nodes { |
| superBlock |
| } |
| } |
| } |
| `); |
|
|
| if (result.errors) { |
| reporter.panic('createPages GraphQL query failed', result.errors); |
| } |
|
|
| const { |
| data: { allSuperBlockStructure } |
| } = result; |
|
|
| const superBlocks = allSuperBlockStructure.nodes.map( |
| (node: { superBlock: string }) => node.superBlock |
| ); |
|
|
| superBlocks.forEach((superBlock: string) => { |
| createSuperBlockIntroPages(createPage)({ superBlock }); |
| }); |
| }; |
|
|
| exports.onCreateWebpackConfig = ({ stage, actions, plugins }: any) => { |
| const newPlugins = [ |
| |
| plugins.provide({ |
| Buffer: ['buffer', 'Buffer'] |
| }), |
| plugins.provide({ |
| process: 'process/browser' |
| }) |
| ]; |
|
|
| |
| |
| |
|
|
| if (stage !== 'build-html' && stage !== 'develop-html') { |
| newPlugins.push( |
| new MonacoWebpackPlugin({ |
| filename: '[name].worker-[contenthash].js' |
| }) |
| ); |
| } |
|
|
| actions.setWebpackConfig({ |
| resolve: { |
| fallback: { |
| fs: false, |
| path: 'path-browserify', |
| assert: 'assert', |
| crypto: 'crypto-browserify', |
| util: 'util/util', |
| buffer: 'buffer', |
| stream: 'stream-browserify', |
| process: 'process/browser', |
| url: 'url' |
| } |
| }, |
| plugins: newPlugins, |
| ignoreWarnings: [ |
| (warning: Error) => { |
| if (warning instanceof Error) { |
| if (warning.message.includes('mini-css-extract-plugin')) { |
| return true; |
| } |
| } |
| return false; |
| } |
| ] |
| }); |
| }; |
|
|
| exports.onCreateBabelConfig = ({ actions }: any) => { |
| actions.setBabelPlugin({ |
| name: '@babel/plugin-proposal-function-bind' |
| }); |
|
|
| actions.setBabelPlugin({ |
| name: '@babel/plugin-proposal-export-default-from' |
| }); |
| }; |
|
|
| exports.createSchemaCustomization = ({ actions }: any) => { |
| const { createTypes } = actions; |
|
|
| |
| |
| const typeDefs = ` |
| type ChallengeNodeChallengeHooks { |
| afterEach: String |
| } |
| `; |
|
|
| createTypes(typeDefs); |
| }; |
|
|