@atlaspack/transformer-compiled-css-in-js 0.0.7-canary.4088 → 0.0.7-canary.4090

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.
@@ -177,6 +177,7 @@ var _default = exports.default = new (_plugin().Transformer)({
177
177
  }
178
178
  asset.meta.compiledCodeHash = result.codeHash;
179
179
  asset.meta.compiledCssDiagnostics = result.diagnostics.map(d => d.message);
180
+ asset.meta.compiledBailOut = result.bailOut;
180
181
  return [asset];
181
182
  }
182
183
  if (result.bailOut) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/transformer-compiled-css-in-js",
3
- "version": "0.0.7-canary.4088+d98c992a5",
3
+ "version": "0.0.7-canary.4090+38f3569a7",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -20,16 +20,16 @@
20
20
  "src"
21
21
  ],
22
22
  "dependencies": {
23
- "@atlaspack/diagnostic": "2.14.1-canary.377+d98c992a5",
24
- "@atlaspack/feature-flags": "2.14.1-canary.377+d98c992a5",
25
- "@atlaspack/plugin": "2.14.5-canary.309+d98c992a5",
26
- "@atlaspack/rust": "3.2.1-canary.309+d98c992a5",
27
- "@atlaspack/source-map": "3.1.2-canary.4088+d98c992a5",
28
- "@atlaspack/utils": "2.14.5-canary.309+d98c992a5"
23
+ "@atlaspack/diagnostic": "2.14.1-canary.379+38f3569a7",
24
+ "@atlaspack/feature-flags": "2.14.1-canary.379+38f3569a7",
25
+ "@atlaspack/plugin": "2.14.5-canary.311+38f3569a7",
26
+ "@atlaspack/rust": "3.2.1-canary.311+38f3569a7",
27
+ "@atlaspack/source-map": "3.1.2-canary.4090+38f3569a7",
28
+ "@atlaspack/utils": "2.14.5-canary.311+38f3569a7"
29
29
  },
30
30
  "type": "commonjs",
31
31
  "scripts": {
32
32
  "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
33
33
  },
34
- "gitHead": "d98c992a56121a4f9f6a011ced5e103f96fe3999"
34
+ "gitHead": "38f3569a7024357c43274666312bc6d024bfe5f9"
35
35
  }
@@ -194,6 +194,7 @@ export default new Transformer({
194
194
  asset.meta.compiledCssDiagnostics = result.diagnostics.map(
195
195
  (d) => d.message,
196
196
  );
197
+ asset.meta.compiledBailOut = result.bailOut;
197
198
  return [asset];
198
199
  }
199
200