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

@unic/estatico-boilerplate

Package Overview
Dependencies
Maintainers
3
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@unic/estatico-boilerplate - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

18

gulpfile.js

@@ -524,2 +524,9 @@ /* eslint-disable global-require */

dest: './dist/assets/media/svgsprite',
watch: {
src: [
'./src/assets/media/svg/**/*.svg',
'./src/demo/modules/svgsprite/svg/*.svg',
],
name: 'media:svgsprite',
},
}, env);

@@ -839,3 +846,2 @@

gulp.task('default', (done) => {
const task = gulp.series('build', 'serve');
let readEnv = new Promise(resolve => resolve());

@@ -859,3 +865,11 @@

readEnv.then(() => task(done));
readEnv.then(() => {
// When starting watcher without building, "build" will never finish
// In order for "serve" to still run properly, we switch from serial to parallel execution
if (env.skipBuild) {
return gulp.parallel('build', 'serve')(done);
}
return gulp.series('build', 'serve')(done);
});
});

4

package.json
{
"name": "@unic/estatico-boilerplate",
"version": "0.0.11",
"version": "0.0.12",
"description": "",

@@ -23,3 +23,3 @@ "main": "index.js",

"@unic/estatico-handlebars": "0.0.7",
"@unic/estatico-imageversions": "0.0.8",
"@unic/estatico-imageversions": "0.0.9",
"@unic/estatico-json-mocks": "0.0.7",

@@ -26,0 +26,0 @@ "@unic/estatico-puppeteer": "0.0.7",

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