@atlaspack/macros 2.14.1-canary.23 → 2.14.1-canary.231

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,20 @@
1
1
  # @atlaspack/macros
2
2
 
3
+ ## 2.14.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#720](https://github.com/atlassian-labs/atlaspack/pull/720) [`d2fd849`](https://github.com/atlassian-labs/atlaspack/commit/d2fd849770fe6305e9c694bd97b1bd905abd9d94) Thanks [@alshdavid](https://github.com/alshdavid)! - Migrate to TypeScript
8
+
9
+ ## 2.14.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#450](https://github.com/atlassian-labs/atlaspack/pull/450) [`b9d41b1`](https://github.com/atlassian-labs/atlaspack/commit/b9d41b175ad5771651a5b0278a5a0147e669234a) Thanks [@benjervis](https://github.com/benjervis)! - Remove the Atlaspack engines compatibility check
14
+
15
+ - [#478](https://github.com/atlassian-labs/atlaspack/pull/478) [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b) Thanks [@yamadapc](https://github.com/yamadapc)! - The first attempt at Version Packages didn't include the built artifacts.
16
+ This has hopefully been fixed, so this change will force those packages to re-release.
17
+
3
18
  ## 2.14.0
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/macros",
3
- "version": "2.14.1-canary.23+88a0dd890",
3
+ "version": "2.14.1-canary.231+889c65cd2",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,5 +15,8 @@
15
15
  "node": ">= 16.0.0"
16
16
  },
17
17
  "type": "commonjs",
18
- "gitHead": "88a0dd8905c60366bcfc6d44a374ca5ddb6be21e"
18
+ "scripts": {
19
+ "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
20
+ },
21
+ "gitHead": "889c65cd25b811045e26a117e7404f694dde77a2"
19
22
  }
package/tsconfig.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "include": ["src"]
4
+ }