@buenos-nachos/time-sync 0.5.1 → 0.5.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @buenos-nachos/time-sync
2
2
 
3
+ ## 0.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - e401ae4: further updated which files are included in NPM packages
8
+
9
+ ## 0.5.2
10
+
11
+ ### Patch Changes
12
+
13
+ - a2a6843: Removed test files from NPM builds.
14
+
3
15
  ## 0.5.1
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buenos-nachos/time-sync",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "author": "Michael Smith <hello@nachos.dev> (https://www.nachos.dev)",
@@ -15,6 +15,11 @@
15
15
  "utility",
16
16
  "ui"
17
17
  ],
18
+ "files": [
19
+ "./src",
20
+ "./dist",
21
+ "CHANGELOG.md"
22
+ ],
18
23
  "sideEffects": false,
19
24
  "main": "./dist/index.js",
20
25
  "publishConfig": {
package/tsconfig.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json"
3
- }
package/tsdown.config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "tsdown";
2
-
3
- export default defineConfig({
4
- entry: "./src/index.ts",
5
- platform: "neutral",
6
- dts: true,
7
- sourcemap: true,
8
- format: ["cjs", "esm"],
9
- });