@ctx-core/ripple-effect-ui-svelte
Advanced tools
Comparing version 1.0.11 to 1.0.12
# @ctx-core/ripple-effect-ui-svelte | ||
## 1.0.12 | ||
### Patch Changes | ||
- .js + .d.ts instead of .ts | ||
## 1.0.11 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@ctx-core/ripple-effect-ui-svelte", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "ctx-core ripple-effect", | ||
@@ -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" | ||
}, | ||
@@ -29,7 +29,7 @@ "./package.json": "./package.json" | ||
"devDependencies": { | ||
"@ctx-core/ripple-effect": "^13.0.8", | ||
"@ctx-core/ripple-effect": "^13.1.1", | ||
"@sveltejs/adapter-auto": "next", | ||
"@sveltejs/kit": "next", | ||
"@swc/cli": "^0.1.55", | ||
"@swc/core": "^1.2.123", | ||
"@swc/core": "^1.2.124", | ||
"rimraf": "^3.0.2", | ||
@@ -46,10 +46,10 @@ "svelte": "^3.44.3", | ||
}, | ||
"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", | ||
"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 dist --copy-files --source-maps --config-file .swcrc", | ||
"compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir dist", | ||
"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": "$@" | ||
@@ -56,0 +56,0 @@ }, |
@@ -11,3 +11,3 @@ import adapter from '@sveltejs/adapter-auto' | ||
package: { | ||
dir: 'dist', | ||
dir: 'lib', | ||
emitTypes: false | ||
@@ -14,0 +14,0 @@ } |
@@ -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
5812