-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dist): export css and js without tabs and cuts (#540)
- Loading branch information
1 parent
0245e1e
commit 7fa01c7
Showing
7 changed files
with
87 additions
and
24 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
import './term'; |
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,2 @@ | ||
import './polyfill'; | ||
import './code'; |
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,8 +1,7 @@ | ||
import '@diplodoc/cut-extension/runtime'; | ||
import '@diplodoc/tabs-extension/runtime'; | ||
|
||
import './polyfill'; | ||
import './code'; | ||
import './term'; | ||
import './base'; | ||
import './_yfm-only'; | ||
import './wide-mode'; | ||
import './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,12 @@ | ||
/** | ||
Note: This file excludes "cut" and "tabs" as they are handled separately | ||
in dedicated extensions (packages). In the future, "note", "file", "term" | ||
and "table" will also be excluded from this file and moved to yfm.scss, | ||
once they are moved to separate packages. Direct usage is not recommended, | ||
as the file is subject to changes without prior notice. | ||
*/ | ||
|
||
@import 'note'; | ||
@import 'file'; | ||
@import 'table'; | ||
@import 'term'; |
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,4 @@ | ||
@import 'common'; | ||
@import 'anchor'; | ||
@import 'highlight'; | ||
@import 'code'; |
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,12 +1,5 @@ | ||
@import 'common'; | ||
@import 'note'; | ||
@import 'anchor'; | ||
@import 'highlight'; | ||
@import 'code'; | ||
@import 'file'; | ||
@import 'term'; | ||
@import 'table'; | ||
@import 'base'; | ||
@import 'yfm-only'; | ||
@import 'modal'; | ||
|
||
@import '@diplodoc/cut-extension/runtime'; | ||
@import '@diplodoc/tabs-extension/runtime'; |