New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bpui.js

Package Overview
Dependencies
Maintainers
1
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bpui.js - npm Package Compare versions

Comparing version 0.1.26 to 0.1.27

6

bin/init.js

@@ -39,3 +39,7 @@ 'use strict';

console.log('Success: Copy all components _variable.scss to `src/bpui/var`')
console.log('');
console.log('');
console.log('Success: Copy all components _variable.scss to `src/bpui/var`');
console.log(' import \'src/bpui/var\'');
console.log('');
}

@@ -42,0 +46,0 @@

2

package.json

@@ -51,3 +51,3 @@ {

"name": "bpui.js",
"version": "0.1.26"
"version": "0.1.27"
}

@@ -13,2 +13,2 @@

require('./bin');
require('./bin/init').done();

@@ -58,2 +58,6 @@ 'use strict';

},
{
name: 'button',
style: function() { return require('../../@bpui/button/style/_index.scss') },
},
]

@@ -56,2 +56,6 @@ 'use strict';

},
{
name: 'button',
style: function() { return require('@bpui/button/style/_index.scss') },
},
]

@@ -23,4 +23,4 @@

// register css
componentInstance.requireComponentStyle(components);
// // register css
// componentInstance.requireComponentStyle(components);

@@ -27,0 +27,0 @@ // Thank the user in console.

@@ -19,3 +19,3 @@ 'use strict';

(function() { require('@bpui/libs/style/class.scss') })();
(function() { require('@bpui/button/style/_index.scss') })();
// (function() { require('@bpui/button/style/_index.scss') })();

@@ -31,7 +31,10 @@ // 需要注册.

components.push(element.name);
loadComponents.push(componentInstance.getComponent(element.name));
var cc = componentInstance.getComponent(element.name);
if (cc) {
loadComponents.push(cc);
}
}
}
for (var i = 0; i < components.length; i++) {
for (var i = 0; i < loadComponents.length; i++) {
var _de = loadComponents[i].default || loadComponents[i];

@@ -38,0 +41,0 @@ if (_de) {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc