@ctx-core/version__app
Advanced tools
Comparing version 9.2.3 to 9.3.0
# @ctx-core/version\_\_app | ||
## 9.3.0 | ||
### Minor Changes | ||
- dist,types directory: addressing typescript build issues | ||
### Patch Changes | ||
- Updated dependencies [undefined] | ||
- @ctx-core/atob@7.2.0 | ||
- @ctx-core/env@10.3.0 | ||
- @ctx-core/object@18.1.0 | ||
- @ctx-core/store@24.9.0 | ||
## 9.2.3 | ||
@@ -4,0 +18,0 @@ |
{ | ||
"name": "@ctx-core/version__app", | ||
"version": "9.2.3", | ||
"version": "9.3.0", | ||
"description": "ctx-core version__app", | ||
@@ -19,10 +19,10 @@ "keywords": [ | ||
"author": "Brian Takita", | ||
"main": "./src/index.js", | ||
"module": "./src/index.js", | ||
"types": "./src/index.d.ts", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.js", | ||
"types": "./types/index.d.ts", | ||
"dependencies": { | ||
"@ctx-core/atob": "^7.1.5", | ||
"@ctx-core/env": "^10.2.3", | ||
"@ctx-core/object": "^18.0.6", | ||
"@ctx-core/store": "^24.8.10", | ||
"@ctx-core/atob": "^7.2.0", | ||
"@ctx-core/env": "^10.3.0", | ||
"@ctx-core/object": "^18.1.0", | ||
"@ctx-core/store": "^24.9.0", | ||
"svelte": "3.38.2" | ||
@@ -29,0 +29,0 @@ }, |
@@ -8,6 +8,6 @@ import { _versioned } from './_versioned' | ||
*/ | ||
export function __versioned(params?:_version_params_I) { | ||
return function _versioned__versioned(url:string) { | ||
export function __versioned(params:_version_params_I) { | ||
return function __versioned(url:string) { | ||
return _versioned(url, params) | ||
} | ||
} |
@@ -10,3 +10,3 @@ import { _versioned } from './_versioned' | ||
*/ | ||
export function _js_versioned(script_src:string, params?:_js_versioned_params_I) { | ||
export function _js_versioned(script_src:string, params:_js_versioned_params_I) { | ||
const extName = (!params || !params.debug) ? '.min.js' : '.js' | ||
@@ -17,6 +17,3 @@ return _versioned(`${script_src}${extName}`, params) | ||
debug?:boolean | ||
minify?:boolean | ||
} | ||
export { | ||
_js_versioned as _versioned__js | ||
} | ||
export { _js_versioned as _versioned__js } |
@@ -8,4 +8,4 @@ import { _version, _version_params_I } from './_version' | ||
*/ | ||
export function _versioned(url:string, params?:_version_params_I) { | ||
export function _versioned(url:string, params:_version_params_I) { | ||
return `${url}?${_version(params)}` | ||
} |
@@ -7,2 +7,3 @@ { | ||
"declaration": true, | ||
"sourceMap": true, | ||
"noEmitOnError": true, | ||
@@ -24,4 +25,6 @@ "noErrorTruncation": true, | ||
], | ||
"outDir": ".", | ||
"declarationDir": ".", | ||
"rootDir": "src", | ||
"outDir": "dist", | ||
"mapRoot": "dist", | ||
"declarationDir": "types", | ||
"lib": [ | ||
@@ -38,5 +41,6 @@ "dom", | ||
"exclude": [ | ||
"node_modules" | ||
"node_modules", | ||
"types" | ||
], | ||
"references": [] | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
44164
49
1
Updated@ctx-core/atob@^7.2.0
Updated@ctx-core/env@^10.3.0
Updated@ctx-core/object@^18.1.0
Updated@ctx-core/store@^24.9.0