forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(BuildTool): follow old behavior to transform js
- Loading branch information
Showing
6 changed files
with
655 additions
and
436 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
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,15 +1,30 @@ | ||
export * as dom from './dom'; | ||
export * as env from './env'; | ||
export * as events from './events'; | ||
export * as func from './func'; | ||
export * as log from './log'; | ||
export * as obj from './object'; | ||
export * as str from './string'; | ||
export * as support from './support'; | ||
export * as focus from './focus'; | ||
export * as htmlId from './htmlId'; | ||
export { default as guid } from './guid'; | ||
export { default as KEYCODE } from './keycode'; | ||
export { default as datejs } from './date'; | ||
export { default as pickAttrs } from './pick-attrs'; | ||
import * as _dom from './dom'; | ||
import * as _env from './env'; | ||
import * as _events from './events'; | ||
import * as _func from './func'; | ||
import * as _log from './log'; | ||
import * as _object from './object'; | ||
import * as _string from './string'; | ||
import * as _support from './support'; | ||
import * as _focus from './focus'; | ||
import * as _htmlId from './htmlId'; | ||
import _guid from './guid'; | ||
import _KEYCODE from './keycode'; | ||
import _date from './date'; | ||
import _pickAttrs from './pick-attrs'; | ||
|
||
export const dom = _dom; | ||
export const env = _env; | ||
export const events = _events; | ||
export const func = _func; | ||
export const log = _log; | ||
export const obj = _object; | ||
export const str = _string; | ||
export const support = _support; | ||
export const focus = _focus; | ||
export const guid = _guid; | ||
export const KEYCODE = _KEYCODE; | ||
export const htmlId = _htmlId; | ||
export const datejs = _date; | ||
export const pickAttrs = _pickAttrs; | ||
export * from './types'; |
Oops, something went wrong.