@snowcone-app/sdk 0.3.1 → 0.3.2
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 +11 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#263](https://github.com/snowcone-app/snowcone-monorepo/pull/263) [`eb3b565`](https://github.com/snowcone-app/snowcone-monorepo/commit/eb3b565cc6f6f2181f230413182f2cb629da2e1d) Thanks [@kevinsproles](https://github.com/kevinsproles)! - fix(sdk): expose `./package.json` in the exports map
|
|
8
|
+
|
|
9
|
+
`require('@snowcone-app/sdk/package.json')` failed with
|
|
10
|
+
`ERR_PACKAGE_PATH_NOT_EXPORTED` — the identical bug fixed in canvas (#258) but
|
|
11
|
+
missed on the sibling, because the packaging smoke test was canvas-only. Adds
|
|
12
|
+
`"./package.json": "./package.json"` to both the dev and published exports maps.
|
|
13
|
+
|
|
3
14
|
## 0.3.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowcone-app/sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Snowcone SDK for product mockups and print-on-demand",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"merch",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"import": "./dist/dev-fetcher.js",
|
|
45
45
|
"require": "./dist/dev-fetcher.cjs",
|
|
46
46
|
"default": "./dist/dev-fetcher.js"
|
|
47
|
-
}
|
|
47
|
+
},
|
|
48
|
+
"./package.json": "./package.json"
|
|
48
49
|
},
|
|
49
50
|
"files": [
|
|
50
51
|
"dist",
|