-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
19 changed files
with
1,373 additions
and
912 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,36 @@ | ||
declare module 'extract-css-chunks-webpack-plugin' { | ||
import { ChunkData, Plugin } from 'webpack'; | ||
|
||
class ExtractCssChunksPlugin extends Plugin { | ||
static loader: string; | ||
|
||
constructor(options?: ExtractCssChunksPlugin.PluginOptions); | ||
} | ||
|
||
namespace ExtractCssChunksPlugin { | ||
interface PluginOptions { | ||
/** | ||
* The filename of the entry chunk. | ||
*/ | ||
filename?: string; | ||
/** | ||
* The filename of non-entry chunks. | ||
*/ | ||
chunkFilename?: string; | ||
/** | ||
* Generates a file name (or template) based on chunk data. | ||
*/ | ||
moduleFilename?: (chunk: ChunkData) => string; | ||
/** | ||
* Remove warnings about conflicting order. | ||
*/ | ||
ignoreOrder?: boolean; | ||
/** | ||
* Inserts `<link>` at the given position (https://github.com/faceyspacey/extract-css-chunks-webpack-pluginn#insert). | ||
*/ | ||
insert?: string | Function; | ||
} | ||
} | ||
|
||
export = ExtractCssChunksPlugin; | ||
} |
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
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
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
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
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,5 +1,5 @@ | ||
body { | ||
background: red; | ||
background-image: url(cd0bb358c45b584743d8ce4991777c42.svg); | ||
background-image: url(c9e192c015437a21dea1faa1d30f4941.svg); | ||
} | ||
|
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,5 +1,5 @@ | ||
body { | ||
background: green; | ||
background-image: url(../../cd0bb358c45b584743d8ce4991777c42.svg); | ||
background-image: url(../../c9e192c015437a21dea1faa1d30f4941.svg); | ||
} | ||
|
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,5 +1,5 @@ | ||
body { | ||
background: red; | ||
background-image: url(../cd0bb358c45b584743d8ce4991777c42.svg); | ||
background-image: url(../c9e192c015437a21dea1faa1d30f4941.svg); | ||
} | ||
|
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,5 +1,5 @@ | ||
body { | ||
background: red; | ||
background-image: url(/static/img/cd0bb358c45b584743d8ce4991777c42.svg); | ||
background-image: url(/static/img/c9e192c015437a21dea1faa1d30f4941.svg); | ||
} | ||
|
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,5 +1,5 @@ | ||
body { | ||
background: red; | ||
background-image: url(/static/img/cd0bb358c45b584743d8ce4991777c42.svg); | ||
background-image: url(/static/img/c9e192c015437a21dea1faa1d30f4941.svg); | ||
} | ||
|
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,3 +1,3 @@ | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
// eslint-disable-next-line | ||
import 'bootstrap.css'; | ||
import './style.css'; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.