-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from parcel-bundler/fix-ak-editor
Fix ak-editor
- Loading branch information
Showing
4 changed files
with
2,578 additions
and
1,434 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
17 changes: 17 additions & 0 deletions
17
benchmarks/ak-editor/patches/@atlaskit+css-reset+6.3.11.patch
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,17 @@ | ||
diff --git a/node_modules/@atlaskit/css-reset/dist/bundle.css b/node_modules/@atlaskit/css-reset/dist/bundle.css | ||
index 20ccd42..90c055b 100644 | ||
--- a/node_modules/@atlaskit/css-reset/dist/bundle.css | ||
+++ b/node_modules/@atlaskit/css-reset/dist/bundle.css | ||
@@ -110,9 +110,9 @@ | ||
dl { | ||
padding-left: 40px; | ||
} | ||
- [dir='rtl']ul, | ||
- [dir='rtl']ol, | ||
- [dir='rtl']dl { | ||
+ [dir='rtl'] ul, | ||
+ [dir='rtl'] ol, | ||
+ [dir='rtl'] dl { | ||
padding-left: 0; | ||
padding-right: 40px; | ||
} |
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,13 @@ | ||
diff --git a/node_modules/react-loadable/lib/index.js b/node_modules/react-loadable/lib/index.js | ||
index 75b1364..103f56c 100644 | ||
--- a/node_modules/react-loadable/lib/index.js | ||
+++ b/node_modules/react-loadable/lib/index.js | ||
@@ -90,7 +90,7 @@ function loadMap(obj) { | ||
} | ||
|
||
function resolve(obj) { | ||
- return obj && obj.__esModule ? obj.default : obj; | ||
+ return obj && obj.default ? obj.default : obj; | ||
} | ||
|
||
function render(loaded, props) { |
Oops, something went wrong.