
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
gulp-cex-utils
Advanced tools
This module is a utility tool for EveryMatrix's Component Explorer
It provides some basic functionality like fetching the list of components, main files and others
npm install --save gulp-cex-utils
npm install --save coffee-loader
npm install --save typescript-loader
npm install --save traceur-loader
to use the gulp module create a Gulpfile.js with the fallowing content:
var gulp = require('gulp');
var config = {
paths: {
src: 'app'
}
};
require('gulp-cex-utils').loadGulp(gulp, config);
var defaultSettings = {
paths:{
tmp: '.tmp',
dist: 'dist',
src: 'src',
scripts: 'scripts',
styles: 'styles',
images: 'img',
test: 'tests',
views: 'views',
assets:[
'src/{,**/}*.*',
'!src/{,**/}*.{css,js,coffee,html,htm,scss,map,json,md,log,d.ts,xml}',
'!src/bower_components/**/*.*'
],
},
fileNames:{
stylesIndex: 'main.scss',
scriptsIndex: 'app.coffee',
},
webPackConfig: {
module: {
loaders: [
{ test: /\.coffee$/, loader: "coffee-loader" },
{ test: /\.ts$/, loader: "typescript" },
{ test: /\.es6\.js$/, loader: 'traceur?sourceMaps' }
]
},
devtool: '#inline-source-map',
resolve: {
extensions: ["", ".web.coffee", ".web.js", ".coffee", ".js", '.ts']
},
plugins: [
new webpack.ResolverPlugin([
new webpack.ResolverPlugin.ModuleAliasPlugin(cexComponentsJson)
]),
new ngAnnotatePlugin({
add: true
})
]
}
}
FAQs
utilities for building cex application
The npm package gulp-cex-utils receives a total of 55 weekly downloads. As such, gulp-cex-utils popularity was classified as not popular.
We found that gulp-cex-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.