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

au-grid

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

au-grid - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

dist/amd/grid.html

28

build/tasks/build.js

@@ -44,2 +44,22 @@ var gulp = require('gulp');

gulp.task('build-html-es2015', function () {
return gulp.src(paths.html)
.pipe(gulp.dest(paths.output + 'es2015'));
});
gulp.task('build-html-commonjs', function () {
return gulp.src(paths.html)
.pipe(gulp.dest(paths.output + 'commonjs'));
});
gulp.task('build-html-amd', function () {
return gulp.src(paths.html)
.pipe(gulp.dest(paths.output + 'amd'));
});
gulp.task('build-html-system', function () {
return gulp.src(paths.html)
.pipe(gulp.dest(paths.output + 'system'));
});
gulp.task('build-es2015-temp', function() {

@@ -51,3 +71,3 @@ return gulp.src(paths.output + jsName)

gulp.task('build-es2015', function() {
gulp.task('build-es2015', ['build-html-es2015'], function() {
return gulp.src(paths.source)

@@ -58,3 +78,3 @@ .pipe(to5(assign({}, removeDTSPlugin(compilerOptions.es2015()))))

gulp.task('build-commonjs', function() {
gulp.task('build-commonjs', ['build-html-commonjs'], function() {
return gulp.src(paths.source)

@@ -65,3 +85,3 @@ .pipe(to5(assign({}, removeDTSPlugin(compilerOptions.commonjs()))))

gulp.task('build-amd', function() {
gulp.task('build-amd', ['build-html-amd'], function() {
return gulp.src(paths.source)

@@ -72,3 +92,3 @@ .pipe(to5(assign({}, removeDTSPlugin(compilerOptions.amd()))))

gulp.task('build-system', function() {
gulp.task('build-system', ['build-html-system'], function() {
return gulp.src(paths.source)

@@ -75,0 +95,0 @@ .pipe(to5(assign({}, removeDTSPlugin(compilerOptions.system()))))

2

package.json
{
"name": "au-grid",
"version": "0.0.2",
"version": "0.0.3",
"description": "A declarative grid component for aurelia.js",

@@ -5,0 +5,0 @@ "keywords": [

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