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

quasar-app-extension-qnumber

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quasar-app-extension-qnumber - npm Package Compare versions

Comparing version 0.0.1 to 1.0.0

4

package.json
{
"name": "quasar-app-extension-qnumber",
"version": "0.0.1",
"version": "1.0.0",
"description": "A Quasar App Extension",

@@ -23,4 +23,4 @@ "author": "Dipak Sarkar <sdepokbd@gmail.com>",

"dependencies": {
"vue-number-format": "^1.2.0"
"@coders-tm/vue-number-format": "^2.1.0"
}
}
import vNumber from '@coders-tm/vue-number-format'
export default ({ app }) => {
// We globally register our plugin with Vue;
// we globally register our component in the app
console.log('booter');
app.use(vNumber)
}

@@ -9,22 +9,22 @@ /**

function extendConf (conf) {
// make sure my-ext boot file is registered
conf.boot.push('~quasar-app-extension-qnumber/src/boot/register-qnumber.js')
function extendConf (conf) {
// make sure my-ext boot file is registered
conf.boot.push('~quasar-app-extension-qnumber/src/boot/register-qnumber.js')
// make sure boot & component files get transpiled
conf.build.transpileDependencies.push(/quasar-app-extension-qnumber[\\/]src/)
}
// make sure boot & component files get transpiled
conf.build.transpileDependencies.push(/quasar-app-extension-qnumber[\\/]src/)
}
module.exports = function (api) {
// (Optional!)
// Quasar compatibility check; you may need
// hard dependencies, as in a minimum version of the "quasar"
// package or a minimum version of "@quasar/app" CLI
api.compatibleWith('quasar', '^2.x')
api.compatibleWith('@quasar/app', '^3.x')
module.exports = function (api) {
// (Optional!)
// Quasar compatibility check; you may need
// hard dependencies, as in a minimum version of the "quasar"
// package or a minimum version of "@quasar/app" CLI
api.compatibleWith('quasar', '^2.*')
api.compatibleWith('@quasar/app', '^3.*')
// Here we extend /quasar.conf.js, so we can add
// a boot file which registers our new UI component;
// "extendConf" will be defined below (keep reading the tutorial)
api.extendQuasarConf(extendConf)
}
// Here we extend /quasar.conf.js, so we can add
// a boot file which registers our new UI component;
// "extendConf" will be defined below (keep reading the tutorial)
api.extendQuasarConf(extendConf)
}
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