@triptease/tt-combobox 5.7.0 → 5.7.1

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 +6 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @triptease/tt-combobox
2
2
 
3
+ ## 5.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updating the prepublish command to use yarn build:node instead of tsc so that it compiles the imports down to use required for common js
8
+
3
9
  ## 5.7.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent tt-combobox following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "@triptease",
6
- "version": "5.7.0",
6
+ "version": "5.7.1",
7
7
  "type": "module",
8
8
  "main": "dist/esm/src/index.js",
9
9
  "module": "dist/esm/src/index.js",
@@ -33,7 +33,7 @@
33
33
  "build:node": "yarn build:esm && yarn build:cjs",
34
34
  "build:node:watch": "tsc --watch",
35
35
  "build:web": "node ../../scripts/esbuild.mjs",
36
- "prepublish": "tsc && npm run analyze -- --exclude dist",
36
+ "prepublish": "yarn build:node && npm run analyze -- --exclude dist",
37
37
  "test": "tsc && wtr",
38
38
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
39
39
  },