Skip to content

Commit

Permalink
Bump mine.css from 7.0.0 to 9.0.0
Browse files Browse the repository at this point in the history
Bumps [mine.css](https://github.com/bcomnes/mine.css) from 7.0.0 to 9.0.0.
- [Release notes](https://github.com/bcomnes/mine.css/releases)
- [Changelog](https://github.com/bcomnes/mine.css/blob/master/CHANGELOG.md)
- [Commits](bcomnes/mine.css@v7.0.0...v9.0.0)

---
updated-dependencies:
- dependency-name: mine.css
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and bcomnes committed Jan 24, 2023
1 parent 14d8ecc commit efdd08c
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 8 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ updates:
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/examples/basic"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/examples/default-layout/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/examples/nested-dest/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/examples/string-layouts/"
schedule:
interval: "daily"
# Enable updates to github actions
- package-ecosystem: "github-actions"
directory: "/"
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"dependencies": {
"uhtml-isomorphic": "^1.0.1",
"mine.css": "^4.6.1"
"mine.css": "^9.0.1"
}
}
2 changes: 1 addition & 1 deletion examples/basic/src/global.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import 'mine.css';
@import 'mine.css/dist/mine.css';
@import 'mine.css/dist/layout.css';

/* The global.css in the root directory of the site is loaded on every page. */
Expand Down
2 changes: 1 addition & 1 deletion examples/nested-dest/global.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import 'mine.css';
@import 'mine.css/dist/mine.css';
@import 'mine.css/dist/layout.css';

/* Just consuming some dependencies for the nested example */
2 changes: 1 addition & 1 deletion examples/nested-dest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"license": "MIT",
"devDependencies": {
"@siteup/cli": "../../.",
"mine.css": "^4.6.1",
"mine.css": "^9.0.1",
"uhtml-isomorphic": "^1.0.1"
}
}
1 change: 1 addition & 0 deletions lib/build-js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export async function buildJs (src, dest, siteData, opts) {
define,
metafile: true,
entryNames: '[dir]/[name]-[hash]',
chunkNames: 'chunks/[ext]/[name]-[hash]',
plugins: [mapOutputToEntry]
}

Expand Down
4 changes: 2 additions & 2 deletions lib/defaults/default.root.layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default function defaultRootLayout ({
: null}
${defaultStyle
? html`
<link rel="stylesheet" href="https://unpkg.com/mine.css@^7/dist/mine.css" />
<link rel="stylesheet" href="https://unpkg.com/mine.css@^7/dist/layout.css" />
<link rel="stylesheet" href="https://unpkg.com/mine.css@^9/dist/mine.css" />
<link rel="stylesheet" href="https://unpkg.com/mine.css@^9/dist/layout.css" />
<link rel="stylesheet" href="https://unpkg.com/highlight.js@^11/styles/github-dark-dimmed.css" />
<script>
import { toggleTheme } from 'https://unpkg.com/bcomnes/mine.css@^7.0.0?module';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"mine.css": "^7.0.0",
"mine.css": "^9.0.1",
"minimist": "^1.2.5",
"postcss": "^8.3.6",
"postcss-import": "^15.0.0",
Expand Down
2 changes: 1 addition & 1 deletion test-cases/general-features/src/global.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@import 'mine.css';
@import 'mine.css/dist/mine.css';
@import 'mine.css/dist/layout.css';

0 comments on commit efdd08c

Please sign in to comment.