Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

maxa-cli

Package Overview
Dependencies
521
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.6.8 to 0.6.9

201

bin/Configrations.js

@@ -70,2 +70,3 @@ const MiniCssExtractPlugin = require("mini-css-extract-plugin");

const HOST = process.env.HOST;
const DEV_SERVER = {

@@ -97,2 +98,25 @@ open: true,

};
const IMAGES = [
{
test: /\.svg/,
use: {
loader: "svg-url-loader",
options: {
encoding: "base64",
},
},
}, //Svg
{
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
type: "asset/inline",
}, //Images
{
test: /\.(woff|woff2|eot|ttf|webp)$/i,
loader: "file-loader",
options: {
name: "static/media/[name].dev.[ext]",
},
type: "asset/resource",
}, //Files
];

@@ -125,81 +149,3 @@ const PRO = {

},
{
test: /\.styl$/i,
use: [
"style-loader",
{
loader: "css-loader",
options: {
url: true,
import: true,
},
},
"stylus-loader",
],
},
{
test: /\.less$/i,
use: [
"style-loader",
{
loader: "css-loader",
options: {
url: true,
webpackImporter: false,
},
},
"less-loader",
],
},
{
test: /\.md$/,
use: [
{
loader: "html-loader",
},
{
loader: "markdown-loader",
options: {
pedantic: true,
},
},
],
},
{
test: /\.svg/,
use: {
loader: "svg-url-loader",
options: {
encoding: "base64",
},
},
},
{
test: /\.json$/,
loader: "json-loader",
type: "asset/resource",
},
{
test: /\.jpg$/,
type: "asset/resource",
},
{
test: /\.png$/,
type: "asset/inline",
},
{
test: /\.(woff|woff2|eot|ttf|jpeg)$/,
use: {
loader: "url-loader",
},
type: "asset/resource",
},
{
test: /\.(webp|gif)$/i,
loader: "file-loader",
options: {
name: "media/[name].[contenthash].[ext]",
},
type: "asset/resource",
},
...IMAGES,
],

@@ -247,3 +193,3 @@ PLUGINS: [

},
},
}, //Typescript
{

@@ -268,95 +214,4 @@ test: /\.(s(a|c)ss)$/,

],
},
{
test: /\.styl$/i,
use: [
"style-loader",
{
loader: "css-loader",
options: {
url: true,
sourceMap: true,
import: true,
},
},
{
loader: "stylus-loader",
options: {
sourceMap: true,
webpackImporter: false,
},
},
],
},
{
test: /\.less$/i,
use: [
"style-loader",
{
loader: "css-loader",
options: {
url: true,
sourceMap: true,
import: true,
},
},
{
loader: "less-loader",
options: {
sourceMap: true,
},
},
],
},
{
test: /\.md$/,
use: [
{
loader: "html-loader",
},
{
loader: "markdown-loader",
options: {
pedantic: true,
},
},
],
},
{
test: /\.svg/,
use: {
loader: "svg-url-loader",
options: {
encoding: "base64",
},
},
},
{
test: /\.json$/,
loader: "json-loader",
type: "asset/resource",
},
{
test: /\.jpg$/,
type: "asset/resource",
},
{
test: /\.png$/,
type: "asset/inline",
},
{
test: /\.(woff|woff2|eot|ttf|jpeg)$/,
use: {
loader: "url-loader",
},
type: "asset/resource",
},
{
test: /\.(webp|gif)$/i,
loader: "file-loader",
options: {
name: "media/[name].dev.[ext]",
},
type: "asset/resource",
},
}, //Sass
...IMAGES,
],

@@ -363,0 +218,0 @@ };

4

bin/Index.js

@@ -34,6 +34,6 @@ #!/usr/bin/env node

case "version" :
_Info("CLI ===> 0.6.8");
_Info("CLI ===> 0.6.9");
_Info(" ---> TypeScript 0.5.4");
_Info(" ---> Sass 1.43.4");
_Info("Maxa-Lib ===> 0.9.3");
_Info("Maxa-Lib ===> 0.9.4");
_Info("Maxa-PWA ===> ?");

@@ -40,0 +40,0 @@ _Info("Maxa-Electron ===> ?");

{
"name": "maxa-cli",
"version": "0.6.8",
"version": "0.6.9",
"description": "The Official Maxa CLI Tools to build, deploy and manage maxa-based apps",

@@ -5,0 +5,0 @@ "main": "bin/Index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc