@atlaspack/conditional-import-types 2.13.5 → 2.13.7

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 +12 -0
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaspack/conditional-import-types
2
2
 
3
+ ## 2.13.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#747](https://github.com/atlassian-labs/atlaspack/pull/747) [`b4422a2`](https://github.com/atlassian-labs/atlaspack/commit/b4422a222a159ec65870c49361f6e7a749ab938b) Thanks [@alshdavid](https://github.com/alshdavid)! - Removing export from conditional-import-types package
8
+
9
+ ## 2.13.6
10
+
11
+ ### Patch Changes
12
+
13
+ - [#730](https://github.com/atlassian-labs/atlaspack/pull/730) [`f1b48e7`](https://github.com/atlassian-labs/atlaspack/commit/f1b48e7a04e005cef0f36a3e692087a9ecdb6f7a) Thanks [@alshdavid](https://github.com/alshdavid)! - Fixing types
14
+
3
15
  ## 2.13.5
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/conditional-import-types",
3
- "version": "2.13.5",
3
+ "version": "2.13.7",
4
4
  "license": "MIT",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -11,5 +11,8 @@
11
11
  "publishConfig": {
12
12
  "access": "public"
13
13
  },
14
- "type": "commonjs"
14
+ "type": "commonjs",
15
+ "scripts": {
16
+ "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
17
+ }
15
18
  }