We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58eb9b commit 48d3e22Copy full SHA for 48d3e22
.github/workflows/deno.yml
@@ -54,6 +54,8 @@ jobs:
54
- name: Bundle package for Deno
55
id: deno-bundle
56
uses: stdlib-js/deno-bundle-action@main
57
+ with:
58
+ target: 'deno'
59
- name: Rewrite file contents
60
run: |
61
# Replace links to other packages with links to the deno branch:
@@ -67,7 +69,7 @@ jobs:
67
69
68
70
# Rewrite all `require()`s to use jsDelivr links:
71
find ./deno -type f -name '*.md' -print0 | xargs -0 sed -Ei "/require\( '@stdlib\// {
- s/(var|let|const)\s+([a-z]+)\s+=\s*require\( '([^']+)' \);/import \2 from \'\3\';/i
72
+ s/(var|let|const)\s+([a-z0-9]+)\s+=\s*require\( '([^']+)' \);/import \2 from \'\3\';/i
73
s/@stdlib/https:\/\/cdn.jsdelivr.net\/gh\/stdlib-js/
74
s/';/@deno\/mod.js';/
75
}"
0 commit comments