@atlaspack/query 2.14.24 → 2.14.26

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,23 @@
1
1
  # @atlaspack/query
2
2
 
3
+ ## 2.14.26
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atlaspack/cache@3.2.20
9
+ - @atlaspack/core@2.23.1
10
+ - @atlaspack/graph@3.5.14
11
+
12
+ ## 2.14.25
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`7f5841c`](https://github.com/atlassian-labs/atlaspack/commit/7f5841c39df049f9546cccbeea2a7337e0337b45)]:
17
+ - @atlaspack/core@2.23.0
18
+ - @atlaspack/cache@3.2.19
19
+ - @atlaspack/graph@3.5.13
20
+
3
21
  ## 2.14.24
4
22
 
5
23
  ### Patch Changes
package/lib/bin.js CHANGED
@@ -1,9 +1,8 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
-
4
- if (process.env.ATLASPACK_SOURCES === 'true' || process.env.ATLASPACK_BUILD_ENV === 'test' || process.env.ATLASPACK_SELF_BUILD) {
5
- require('@atlaspack/babel-register');
6
- }
7
- const run = require('./cli').run;
8
- require('v8-compile-cache');
9
- run(process.argv.slice(2));
1
+ /**
2
+ * DEV BIN - DO NOT PUBLISH
3
+ *
4
+ * This file is copied into /lib/ by `yarn run dev:prepare`
5
+ *
6
+ * When babel build runs it is overwritten by another asset.
7
+ */
8
+ require('../src/bin');
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@atlaspack/query",
3
- "version": "2.14.24",
3
+ "version": "2.14.26",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "scripts": {
9
- "dev:prepare": "rimraf ./lib/ && mkdir -p lib && cp ./bin/dev-bin.js ./lib/bin.js"
9
+ "dev:prepare": "rimraf ./lib/ && mkdir -p lib && cp ./bin/dev-bin.js ./lib/bin.js",
10
+ "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
10
11
  },
11
12
  "repository": {
12
13
  "type": "git",
@@ -17,9 +18,9 @@
17
18
  },
18
19
  "main": "src/index.js",
19
20
  "dependencies": {
20
- "@atlaspack/cache": "3.2.18",
21
- "@atlaspack/core": "2.22.0",
22
- "@atlaspack/graph": "3.5.12",
21
+ "@atlaspack/cache": "3.2.20",
22
+ "@atlaspack/core": "2.23.1",
23
+ "@atlaspack/graph": "3.5.14",
23
24
  "nullthrows": "^1.1.1",
24
25
  "table": "^6.8.1",
25
26
  "v8-compile-cache": "^2.0.0"