@atlaspack/macros 2.14.1-canary.26 → 2.14.1-canary.260

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,26 @@
1
1
  # @atlaspack/macros
2
2
 
3
+ ## 2.14.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#742](https://github.com/atlassian-labs/atlaspack/pull/742) [`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd) Thanks [@yamadapc](https://github.com/yamadapc)! - Internal changes and bug fixes to environmentDeduplication flag
8
+
9
+ ## 2.14.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#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
14
+
15
+ ## 2.14.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#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
20
+
21
+ - [#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.
22
+ This has hopefully been fixed, so this change will force those packages to re-release.
23
+
3
24
  ## 2.14.0
4
25
 
5
26
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/macros",
3
- "version": "2.14.1-canary.26+c7726ccfb",
3
+ "version": "2.14.1-canary.260+dc6e4b2bb",
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": "c7726ccfbde03bad9f19e103d6b4ed0d279d837d"
18
+ "scripts": {
19
+ "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
20
+ },
21
+ "gitHead": "dc6e4b2bb99f371d225c296dbf96363fdac52333"
19
22
  }
package/tsconfig.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "include": ["src"]
4
+ }