@lightsparkdev/core 0.3.0 → 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 +13 -0
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @lightsparkdev/core
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cf73a38: Upgrade yarn to latest
|
|
8
|
+
- 9c0a2fe: Declare shared deps in workspaces that require them
|
|
9
|
+
|
|
10
|
+
## 0.3.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- b21bf7b: Release
|
|
15
|
+
|
|
3
16
|
## 0.3.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightsparkdev/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Lightspark JS SDK",
|
|
5
5
|
"author": "Lightspark Inc.",
|
|
6
6
|
"keywords": [
|
|
@@ -49,11 +49,12 @@
|
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
51
51
|
"dev": "yarn build -- --watch",
|
|
52
|
-
"clean": "rm -rf .turbo && rm -rf
|
|
52
|
+
"clean": "rm -rf .turbo && rm -rf dist",
|
|
53
53
|
"lint": "npx prettier --check ./src",
|
|
54
|
-
"format": "
|
|
55
|
-
"
|
|
56
|
-
"
|
|
54
|
+
"format": "prettier src --check",
|
|
55
|
+
"format:fix": "prettier src --write",
|
|
56
|
+
"test": "echo \"TODO\"",
|
|
57
|
+
"types": "tsc",
|
|
57
58
|
"postversion": "yarn build"
|
|
58
59
|
},
|
|
59
60
|
"license": "Apache-2.0",
|
|
@@ -72,9 +73,9 @@
|
|
|
72
73
|
"@types/crypto-js": "^4.1.1",
|
|
73
74
|
"@types/ws": "^8.5.4",
|
|
74
75
|
"jest": "^29.4.1",
|
|
75
|
-
"prettier": "
|
|
76
|
-
"prettier-plugin-organize-imports": "^3.2.2",
|
|
76
|
+
"prettier": "2.8.7",
|
|
77
77
|
"ts-jest": "^29.0.5",
|
|
78
|
+
"tsconfig": "*",
|
|
78
79
|
"tsup": "^6.7.0",
|
|
79
80
|
"typescript": "^4.9.5"
|
|
80
81
|
}
|