fix: add .npmrc to deno-src to fix @jsr npm scope problem

All imports in deno typescript file are auto converted to npm packages under @jsr scope. This requires mapping scope to jsr's registry
This commit is contained in:
Huakun Shen 2025-01-12 03:26:57 -05:00
parent 031ec8f25a
commit 0c7da3ca30
No known key found for this signature in database
3 changed files with 6 additions and 3 deletions

2
deno-src/.npmrc Normal file
View File

@ -0,0 +1,2 @@
engine-strict=true
@jsr:registry=https://npm.jsr.io

View File

@ -1,6 +1,6 @@
{ {
"name": "@kunkun/ext-image-processing", "name": "@kunkun/ext-image-processing",
"version": "0.0.10", "version": "0.0.11",
"license": "MIT", "license": "MIT",
"exports": "./mod.ts", "exports": "./mod.ts",
"publish": { "publish": {
@ -12,7 +12,8 @@
"README.md", "README.md",
"LICENSE", "LICENSE",
"deno-src", "deno-src",
"src/types.ts" "src/types.ts",
".npmrc"
] ]
} }
} }

View File

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.kunkun.sh", "$schema": "https://schema.kunkun.sh",
"name": "image-processing", "name": "image-processing",
"version": "0.0.10", "version": "0.0.11",
"kunkun": { "kunkun": {
"name": "Image Processing", "name": "Image Processing",
"shortDescription": "Image Processing", "shortDescription": "Image Processing",