@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. 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.0",
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 node_modules && rm -rf dist",
52
+ "clean": "rm -rf .turbo && rm -rf dist",
53
53
  "lint": "npx prettier --check ./src",
54
- "format": "npx prettier --write ./src",
55
- "test": "tsc --noEmit --project tsconfig-test.json && jest --no-cache --runInBand --bail",
56
- "type-check": "tsc --noEmit",
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": "^2.8.4",
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
  }