-
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8315fdb
commit c079509
Showing
4 changed files
with
37 additions
and
12 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 |
---|---|---|
|
@@ -8,10 +8,26 @@ | |
] | ||
}, | ||
"tasks": { | ||
"test": "TZ=Z LUME_LOGS=ERROR DENO_FUTURE=1 deno test -A", | ||
"test:update": "deno task test -- --update", | ||
"changelog": "deno run --allow-read --allow-write https://deno.land/x/[email protected]/bin.ts", | ||
"update-deps": "deno run -A --quiet 'https://deno.land/x/[email protected]/cli.ts' update deps/*.ts deno.json" | ||
"test": { | ||
"description": "Run all Lume tests. You can run only one test with `deno task test tests/<filename>`", | ||
"command": "TZ=Z LUME_LOGS=ERROR DENO_FUTURE=1 deno test -A" | ||
}, | ||
"test:update": { | ||
"description": "Update all tests snapshots", | ||
"command": "deno task test -- --update" | ||
}, | ||
"changelog": { | ||
"description": "Run the changelog utility to format the CHANGELOG.md file", | ||
"command": "deno run --allow-read --allow-write https://deno.land/x/[email protected]/bin.ts" | ||
}, | ||
"update": { | ||
"description": "Run the nudd utility to update dependencies. I.e. `deno task update deps/dom.ts`", | ||
"command": "deno run -A --quiet 'https://deno.land/x/[email protected]/cli.ts' update" | ||
}, | ||
"update-deps": { | ||
"description": "Update all dependencies to the latest version. Add `--dry-run` to don't write the changes", | ||
"command": "deno task update deps/*.ts deno.json" | ||
} | ||
}, | ||
"imports": { | ||
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/[email protected]/" | ||
|
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 |
---|---|---|
|
@@ -3,10 +3,10 @@ export { | |
type SourceCodeTransformer, | ||
type UnocssPluginContext, | ||
type UserConfig, | ||
} from "npm:@unocss/core@0.64.1"; | ||
export { presetUno } from "npm:@unocss/preset-uno@0.64.1"; | ||
export { default as transformerVariantGroup } from "npm:@unocss/transformer-variant-group@0.64.1"; | ||
export { default as transformerDirectives } from "npm:@unocss/transformer-directives@0.64.1"; | ||
export { default as MagicString } from "npm:[email protected].13"; | ||
} from "npm:@unocss/core@0.65.1"; | ||
export { presetUno } from "npm:@unocss/preset-uno@0.65.1"; | ||
export { default as transformerVariantGroup } from "npm:@unocss/transformer-variant-group@0.65.1"; | ||
export { default as transformerDirectives } from "npm:@unocss/transformer-directives@0.65.1"; | ||
export { default as MagicString } from "npm:[email protected].14"; | ||
|
||
export const resetUrl = "https://cdn.jsdelivr.net/npm/@unocss/reset@0.64.1"; | ||
export const resetUrl = "https://cdn.jsdelivr.net/npm/@unocss/reset@0.65.1"; |
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