@elementor/schema 0.1.0 → 0.1.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 +10 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.1.1](https://github.com/elementor/elementor-packages/compare/@elementor/schema@0.1.0...@elementor/schema@0.1.1) (2024-08-05)
7
+
8
+ ### Bug Fixes
9
+
10
+ - publish only necessary files to npm ([#226](https://github.com/elementor/elementor-packages/issues/226)) ([d808e2f](https://github.com/elementor/elementor-packages/commit/d808e2f60eb7ca2d7b8560d0b79c0e62c2f969a8))
11
+
6
12
  # 0.1.0 (2024-07-24)
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/schema",
3
3
  "description": "Schema validation with static type inference using Zod",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/elementor/elementor-packages.git",
22
+ "url": "git+https://github.com/elementor/elementor-packages.git",
23
23
  "directory": "packages/libs/schema"
24
24
  },
25
25
  "bugs": {
@@ -28,6 +28,13 @@
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
+ "files": [
32
+ "README.md",
33
+ "CHANGELOG.md",
34
+ "/dist",
35
+ "/src",
36
+ "!**/__tests__"
37
+ ],
31
38
  "scripts": {
32
39
  "build": "tsup --config=../../tsup.build.ts",
33
40
  "dev": "tsup --config=../../tsup.dev.ts"
@@ -35,5 +42,5 @@
35
42
  "dependencies": {
36
43
  "zod": "^3.23.8"
37
44
  },
38
- "gitHead": "c2ab9d4fd5ba7f041cf6187dc414d60cc3ed9e79"
45
+ "gitHead": "f4ca33da0842a29d83736d0a173633085edddaee"
39
46
  }