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

cp-card

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cp-card - npm Package Compare versions

Comparing version

to
0.0.3

import CpBaseElement from 'cp-base-element/dist/compiled/cp-base-element';
import './cp-card-styles';

@@ -3,0 +4,0 @@ const template = `

@@ -7,2 +7,4 @@ const gulp = require('gulp');

const uglify = require('gulp-uglify');
const rename = require('gulp-rename');
const replace = require('gulp-replace');
const sourcesHtmlSplitter = new HtmlSplitter();

@@ -12,3 +14,3 @@ const del = require('del');

gulp.task('clean', () => {
return del(['dist/**/*'])
return del(['./*.compiled.*'])
});

@@ -25,13 +27,12 @@

})))
.pipe(gulpif(/\.html$/, replace(/<link rel="import" href="(.*?)(.html)">/g, '<link rel="import" href="$1.compiled$2">')))
.pipe(sourcesHtmlSplitter.rejoin())
.pipe(gulp.dest('dist/compiled/'));
.pipe(rename({
suffix: ".compiled"
}))
.pipe(gulp.dest('./'));
});
gulp.task('build', () => {
return gulp.src(['./*.html', './*.js', '!./gulpfile.js'])
.pipe(gulp.dest('dist/default/'));
});
gulp.task('default',
gulp.series('clean', gulp.parallel('build', 'compile'))
gulp.series('clean', 'compile')
);
{
"name": "cp-card",
"version": "0.0.2",
"version": "0.0.3",
"description": "Card element for Customer Portal elements",

@@ -12,3 +12,2 @@ "repository": {

"prepublish": "./node_modules/.bin/gulp",
"postinstall": "./node_modules/.bin/gulp",
"build": "./node_modules/.bin/gulp"

@@ -18,3 +17,3 @@ },

"license": "ISC",
"dependencies": {
"devDependencies": {
"babel-cli": "^6.24.1",

@@ -28,5 +27,10 @@ "babel-plugin-external-helpers": "^6.22.0",

"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-uglify": "^3.0.0",
"polymer-build": "^2.0.0"
},
"dependencies": {
"cp-base-element": "0.0.5"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet