-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into renovate/lru-cache-11.x
- Loading branch information
Showing
52 changed files
with
1,641 additions
and
1,294 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 +1 @@ | ||
20.11.1 | ||
20.16.0 |
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,19 @@ | ||
/* eslint-disable no-await-in-loop */ | ||
/* eslint-disable no-restricted-syntax */ | ||
const fs = require('fs') | ||
const { prodConfig } = require('./esbuild_config') | ||
|
||
require('esbuild').build(prodConfig) | ||
require('esbuild') | ||
.build(prodConfig) | ||
.then(async result => { | ||
// output bundle | ||
/* | ||
for (const out of result.outputFiles) { | ||
await fs.mkdirp(path.dirname(out.path)) | ||
await fs.writeFile(out.path, new TextDecoder().decode(out.contents), 'utf8') | ||
} | ||
*/ if (result.metafile) { | ||
// use https://bundle-buddy.com/esbuild to analyses | ||
await fs.writeFileSync('./build/metafile.json', JSON.stringify(result.metafile)) | ||
} | ||
}) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
26 changes: 0 additions & 26 deletions
26
client/components/DegreeReformView/DegreeReformOverview/OverviewPage.scss
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,26 +0,0 @@ | ||
@import '../../assets/colors.scss'; | ||
|
||
.wide-header { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr 1fr 2fr 2fr 1fr; | ||
align-items: center; | ||
column-gap: 2rem; | ||
margin: 2rem 1rem; | ||
margin-bottom: 3rem; | ||
} | ||
|
||
.wideish-header { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr 2fr 1fr; | ||
align-items: center; | ||
column-gap: 2rem; | ||
margin: 2rem 1rem; | ||
margin-bottom: 3rem; | ||
} | ||
|
||
.view-title { | ||
margin-right: 1em; | ||
margin-top: 1em, | ||
} | ||
|
||
|
||
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
Oops, something went wrong.