Skip to content

Commit 825f175

Browse files
committed
Add files specifiers to several packages
- @macrostrat/map-styles - @macrostrat/form-components
1 parent e43bf1a commit 825f175

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

packages/form-components/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Changelog
2+
3+
## [0.1.2] - 2025-02-15
4+
5+
Added `files` specifier to `package.json` to ensure that all `dist` files are
6+
included in the package.
7+
18
## [0.1.1] - 2025-02-15
29

310
Addd a `node` target to bundle without imported CSS.

packages/form-components/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/form-components",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Form components for user input into Macrostrat apps",
55
"type": "module",
66
"source": "src/index.ts",
@@ -22,6 +22,10 @@
2222
}
2323
}
2424
},
25+
"files": [
26+
"src",
27+
"dist"
28+
],
2529
"scripts": {
2630
"build": "rm -rf dist && parcel build"
2731
},

packages/map-styles/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format
44
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.1.1] - 2025-02-15
8+
9+
Added `files` specifier to `package.json` to ensure that all `dist` files are
10+
included in the package.
11+
712
## [1.1.0] - 2025-02-14
813

914
- Move some React-specific elements to the `@macrostrat/mapbox-react` package

packages/map-styles/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/map-styles",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Utilities for working with Mapbox map styles",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -13,6 +13,10 @@
1313
"types": "./dist/index.d.ts"
1414
}
1515
},
16+
"files": [
17+
"dist",
18+
"src"
19+
],
1620
"devDependencies": {
1721
"parcel": "^2.13.3",
1822
"ts-node": "^10.7.0"

0 commit comments

Comments
 (0)