@symbo.ls/create 2.11.407 → 2.11.409

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.
@@ -66,8 +66,6 @@ const prepareComponents = (options) => {
66
66
  return options.components ? { ...UIkitWithPrefix(), ...options.components } : UIkitWithPrefix();
67
67
  };
68
68
  const prepareUtils = (options) => {
69
- if (window.require && window.packages.smbls)
70
- return window.packages.smbls;
71
69
  return { ...utils, ...utils.scratchUtils, ...options.snippets || options.utils || options.functions || {} };
72
70
  };
73
71
  const preparePackages = (packages, opts) => {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/create",
3
- "version": "2.11.407",
3
+ "version": "2.11.409",
4
4
  "license": "MIT",
5
- "gitHead": "3cdb1701845f3092a7712977cda6fb8ab7e2fe9a",
5
+ "gitHead": "7d883c7112e7a823f8f8da70c8a04c1afbeac04a",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
package/src/prepare.js CHANGED
@@ -32,7 +32,6 @@ export const prepareComponents = options => {
32
32
  }
33
33
 
34
34
  export const prepareUtils = options => {
35
- if (window.require && window.packages.smbls) return window.packages.smbls
36
35
  return { ...utils, ...utils.scratchUtils, ...(options.snippets || options.utils || options.functions || {}) }
37
36
  }
38
37