Skip to content

Commit adbceed

Browse files
committed
feat:unpacking webpack,add vue-webpack and react-webpack
1 parent c676428 commit adbceed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+10632
-101
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"publish": "lerna publish",
88
"watch":"lerna run watch",
99
"postinstall": "npm run lint && npx checker-init && npm run init && npm run linkReact && npm run linkReactDom && npm run linkReactRouter && cd packages/app && npm run link",
10-
"linkReact": "cd packages/core-react/node_modules/react && yarn link",
11-
"linkReactDom": "cd packages/core-react/node_modules/react-dom && yarn link",
12-
"linkReactRouter": "cd packages/core-react/node_modules/react-router-dom && yarn link",
10+
"linkReact": "cd packages/react/node_modules/react && yarn link",
11+
"linkReactDom": "cd packages/react/node_modules/react-dom && yarn link",
12+
"linkReactRouter": "cd packages/react/node_modules/react-router-dom && yarn link",
1313
"lint": "eslint packages/*/src --fix"
1414
},
1515
"devDependencies": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getCoreConfig, setCoreConfig } from './loadConfig';
1+
import { getCoreConfig, setCoreConfig } from './config';
22

33
export const isDev = () => {
44
const NODE_ENV = (process.env && process.env.NODE_ENV) || 'development';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export { Logger } from './log';
22
export { isDev, getOptions, setOptions } from './common';
3-
export * from './loadConfig';
3+
export * from './config';
44
export * from './util';
55
import { isDev, getOptions, setOptions } from './common';
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getCoreConfig } from './../loadConfig';
1+
import { getCoreConfig } from '../config';
22
const { log } = getCoreConfig();
33
export let Logger = console;
44
if (!log) {

0 commit comments

Comments
 (0)