Skip to content

Commit

Permalink
fix: babel.config.js for gatsby
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Nov 14, 2019
1 parent cf51118 commit 6c2cb7c
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 5 deletions.
35 changes: 34 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
// @see https://babeljs.io/docs/en/next/config-files#project-wide-configuration
module.exports = (api) => {
api.cache(() => process.env.NODE_ENV);
if(process.env.NODE_ENV === 'site') {
return {
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"modules": false
}
],
'@babel/preset-react',
"babel-preset-gatsby"
],
"plugins": [
[
'@babel/plugin-proposal-decorators',
{
legacy: true,
}
],
[
// import glsl as raw text
'babel-plugin-inline-import',
{
extensions: [
// 由于使用了 TS 的 resolveJsonModule 选项,JSON 可以直接引入,不需要当作纯文本
// '.json',
'.glsl',
]
}
],
]
};
}
return {
presets: [
[
Expand All @@ -14,7 +48,6 @@ module.exports = (api) => {
],
'@babel/preset-react',
'@babel/preset-typescript',
'babel-preset-gatsby',
],
plugins: [
'@babel/plugin-proposal-optional-chaining',
Expand Down
2 changes: 1 addition & 1 deletion gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './packages/component/src/css/l7.css';
require('./packages/component/src/css/l7.css');
// window.GeoTIFF = require('geotiff/dist/geotiff.bundle.js')
window.scene = require('./packages/scene/src');
window.layers= require('./packages/layers/src');
Expand Down
14 changes: 12 additions & 2 deletions gatsby-node.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
const setWebpackConfig = require('./.storybook/webpack.config');
const path = require('path');

exports.onCreateWebpackConfig = ({ getConfig, stage, plugins }) => {
const config = getConfig();
config.resolve.extensions.push('.glsl');
console.log(config);
config.resolve.alias = {
...config.resolve.alias,
'@l7/core': path.resolve(__dirname, 'packages/core/src'),
'@l7/component': path.resolve(__dirname, 'packages/component/src'),
'@l7/layers': path.resolve(__dirname, 'packages/layers/src'),
'@l7/maps': path.resolve(__dirname, 'packages/maps/src'),
'@l7/renderer': path.resolve(__dirname, 'packages/renderer/src'),
'@l7/scene': path.resolve(__dirname, 'packages/scene/src'),
'@l7/source': path.resolve(__dirname, 'packages/source/src'),
'@l7/utils': path.resolve(__dirname, 'packages/utils/src'),
};
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"worker-loader": "^2.0.0"
},
"scripts": {
"start": "export NODE_ENV=site && npm run site:develop",
"start": "NODE_ENV=site npm run site:develop",
"site:develop": "gatsby develop --open -H 0.0.0.0",
"site:build": "npm run site:clean && export NODE_ENV=site && gatsby build --prefix-paths",
"site:clean": "gatsby clean",
Expand Down

0 comments on commit 6c2cb7c

Please sign in to comment.