Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@enhance/arc-plugin-enhance

Package Overview
Dependencies
Maintainers
6
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enhance/arc-plugin-enhance - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

2

package.json
{
"name": "@enhance/arc-plugin-enhance",
"version": "2.1.1",
"version": "2.1.2",
"main": "src/plugins/beginner.js",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -1,2 +0,2 @@

let path = require('path')
let { join } = require('path')
let bundles = require('@architect/plugin-bundles')

@@ -30,3 +30,3 @@ let styles = require('@enhance/arc-plugin-styles')

return {
src: path.join(cwd, 'app')
src: join(cwd, 'app')
}

@@ -39,3 +39,3 @@ },

return {
src: path.join(cwd, 'models')
src: join(cwd, 'models')
}

@@ -51,7 +51,19 @@ },

http () {
let rootCatchallSrcDir = path.join(__dirname, '..', 'http', 'any-catchall')
let staticAssetSrcDir = path.join(__dirname, '..', 'http', 'get-_public-catchall')
let rootCatchallSrcDir = join(__dirname, '..', 'http', 'any-catchall')
let staticAssetSrcDir = join(__dirname, '..', 'http', 'get-_public-catchall')
return [
{ method: 'any', path: '/*', src: rootCatchallSrcDir },
{ method: 'get', path: '/_public/*', src: staticAssetSrcDir },
{
method: 'any',
path: '/*',
src: rootCatchallSrcDir,
},
{
method: 'get',
path: '/_public/*',
src: staticAssetSrcDir,
config: {
shared: false,
views: false,
}
},
]

@@ -71,5 +83,4 @@ },

}
}
// eof
}
}
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