@lightsparkdev/core 0.3.1 → 0.3.3

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 +10 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @lightsparkdev/core
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 7d81e43: Turn prettier organize imports plugin back on except for site
8
+
9
+ ## 0.3.2
10
+
11
+ ### Patch Changes
12
+
13
+ - cf73a38: Upgrade yarn to latest
14
+ - 9c0a2fe: Declare shared deps in workspaces that require them
15
+
3
16
  ## 0.3.1
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightsparkdev/core",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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,8 +73,11 @@
72
73
  "@types/crypto-js": "^4.1.1",
73
74
  "@types/ws": "^8.5.4",
74
75
  "jest": "^29.4.1",
76
+ "prettier": "2.8.7",
77
+ "prettier-plugin-organize-imports": "^3.2.2",
75
78
  "ts-jest": "^29.0.5",
79
+ "tsconfig": "*",
76
80
  "tsup": "^6.7.0",
77
- "tsconfig": "*"
81
+ "typescript": "^4.9.5"
78
82
  }
79
83
  }