@_linked/core 2.13.0 → 2.13.1-next.20260707071102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.13.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#152](https://github.com/linked-cm/core/pull/152) [`213467d`](https://github.com/linked-cm/core/commit/213467d07c3e586f0d48336065318a71a9402e73) Thanks [@flyon](https://github.com/flyon)! - Remove the `development` export condition (pointed at `src`, which isn't shipped to npm). Monorepo dev resolves workspace source via the cli Vite plugin; standalone resolves `import → lib`. No consumer-visible change.
|
|
8
|
+
|
|
3
9
|
## 2.13.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@_linked/core",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.1-next.20260707071102",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"linkedPackage": true,
|
|
6
6
|
"type": "module",
|
|
@@ -20,17 +20,14 @@
|
|
|
20
20
|
"exports": {
|
|
21
21
|
".": {
|
|
22
22
|
"types": "./lib/esm/index.d.ts",
|
|
23
|
-
"development": "./src/index.ts",
|
|
24
23
|
"import": "./lib/esm/index.js"
|
|
25
24
|
},
|
|
26
25
|
"./sparql": {
|
|
27
26
|
"types": "./lib/esm/sparql/index.d.ts",
|
|
28
|
-
"development": "./src/sparql/index.ts",
|
|
29
27
|
"import": "./lib/esm/sparql/index.js"
|
|
30
28
|
},
|
|
31
29
|
"./*": {
|
|
32
30
|
"types": "./lib/esm/*.d.ts",
|
|
33
|
-
"development": "./src/*.ts",
|
|
34
31
|
"import": "./lib/esm/*.js"
|
|
35
32
|
}
|
|
36
33
|
},
|