@ctx-core/logger
Advanced tools
Comparing version 9.0.40 to 9.0.41
# @ctx-core/logger | ||
## 9.0.41 | ||
### Patch Changes | ||
- .js + .d.ts instead of .ts | ||
## 9.0.40 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@ctx-core/logger", | ||
"version": "9.0.40", | ||
"version": "9.0.41", | ||
"description": "ctx-core logger", | ||
@@ -20,6 +20,6 @@ "keywords": [ | ||
"type": "module", | ||
"types": "./dist/index.d.ts", | ||
"types": "./lib/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js" | ||
"import": "./lib/index.js" | ||
}, | ||
@@ -30,3 +30,3 @@ "./package.json": "./package.json" | ||
"@swc/cli": "^0.1.55", | ||
"@swc/core": "^1.2.120", | ||
"@swc/core": "^1.2.124", | ||
"rimraf": "^3.0.2", | ||
@@ -39,12 +39,12 @@ "typescript": "next" | ||
}, | ||
"svelte": "./dist/index.js", | ||
"svelte": "./lib/index.js", | ||
"scripts": { | ||
"build": "npm run compile", | ||
"clean": "rimraf dist && npm run clean_tsbuildinfo", | ||
"clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts", | ||
"compile": "npm run compile_source && npm run compile_declaration", | ||
"compile_source": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc", | ||
"compile_declaration": "npm run clean_tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir dist", | ||
"clean": "rimraf lib && npm run clean:tsbuildinfo", | ||
"clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts", | ||
"compile": "npm run compile:source && npm run compile:declaration", | ||
"compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc", | ||
"compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib", | ||
"exec": "$@" | ||
} | ||
} |
@@ -25,4 +25,4 @@ { | ||
"rootDir": "src", | ||
"outDir": "dist", | ||
"declarationDir": "dist", | ||
"outDir": "lib", | ||
"declarationDir": "lib", | ||
"lib": ["dom", "ESNext"], | ||
@@ -34,5 +34,5 @@ "importsNotUsedAsValues": "error", | ||
"node_modules", | ||
"dist" | ||
"lib" | ||
], | ||
"references": [] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25603