@stylable/core
Advanced tools
Comparing version 0.1.17 to 0.1.18
@@ -29,3 +29,9 @@ "use strict"; | ||
else { | ||
var _module = this.requireModule(from); | ||
var _module = void 0; | ||
try { | ||
_module = this.requireModule(from); | ||
} | ||
catch (_a) { | ||
return null; | ||
} | ||
symbol = !name ? | ||
@@ -32,0 +38,0 @@ _module.default || _module : |
@@ -64,5 +64,5 @@ "use strict"; | ||
chai_1.expect(output).to.equal("." + meta.namespace + "--x{color:red}"); | ||
}).timeout(5000); | ||
}).timeout(25000); | ||
}); | ||
var templateObject_1, templateObject_2; | ||
//# sourceMappingURL=stylable-optimizer.spec.js.map |
{ | ||
"name": "@stylable/core", | ||
"version": "0.1.17", | ||
"version": "0.1.18", | ||
"description": "CSS for Components", | ||
@@ -24,5 +24,5 @@ "main": "./dist/src/index.js", | ||
"murmurhash": "^0.0.2", | ||
"postcss": "^7.0.6", | ||
"postcss": "^7.0.7", | ||
"postcss-js": "^2.0.0", | ||
"postcss-nested": "^4.1.0", | ||
"postcss-nested": "^4.1.1", | ||
"postcss-safe-parser": "^4.0.1", | ||
@@ -34,3 +34,3 @@ "postcss-selector-matches": "^4.0.0", | ||
"devDependencies": { | ||
"@stylable/runtime": "^0.1.12" | ||
"@stylable/runtime": "^0.1.13" | ||
}, | ||
@@ -53,3 +53,3 @@ "files": [ | ||
"license": "BSD-3-Clause", | ||
"gitHead": "6e2c807b60e65cc89457cc7e60eef1b819956258" | ||
"gitHead": "4de50a2e7656c4b7e3dab5619683e11e7364ebfc" | ||
} |
@@ -46,3 +46,8 @@ import { FileProcessor } from './cached-process-file'; | ||
} else { | ||
const _module = this.requireModule(from); | ||
let _module; | ||
try { | ||
_module = this.requireModule(from); | ||
} catch { | ||
return null; | ||
} | ||
symbol = !name ? | ||
@@ -49,0 +54,0 @@ _module.default || _module : |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1127807
15534
Updatedpostcss@^7.0.7
Updatedpostcss-nested@^4.1.1