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

base-href-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base-href-webpack-plugin - npm Package Compare versions

Comparing version

to
1.0.1

67

index.js

@@ -1,48 +0,29 @@

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var BaseHrefWebpackPlugin = exports.BaseHrefWebpackPlugin = function () {
function BaseHrefWebpackPlugin(options) {
_classCallCheck(this, BaseHrefWebpackPlugin);
export class BaseHrefWebpackPlugin {
constructor(options) {
this.options = options;
}
}
_createClass(BaseHrefWebpackPlugin, [{
key: 'apply',
value: function apply(compiler) {
var _this = this;
apply(compiler) {
if (!this.options.baseHref) {
return;
}
if (!this.options.baseHref) {
return;
}
compiler.plugin('compilation', (compilation) => {
compilation.plugin('html-webpack-plugin-before-html-processing', (htmlPluginData, callback) => {
// Check if base tag already exists
const baseTagRegex = /<base.*?>/i;
const baseTagMatches = htmlPluginData.html.match(baseTagRegex);
if (!baseTagMatches) {
// Insert it in top of the head
htmlPluginData.html = htmlPluginData.html.replace(/<head>/i, '$&' + `<base href="${this.options.baseHref}">`);
} else {
// Otherwise replace href attribute of current base tag
const modifiedBaseTag = baseTagMatches[0].replace(/href="\S+"/i, `href="${this.options.baseHref}"`);
htmlPluginData.html = htmlPluginData.html.replace(baseTagRegex, modifiedBaseTag);
}
compiler.plugin('compilation', function (compilation) {
compilation.plugin('html-webpack-plugin-before-html-processing', function (htmlPluginData, callback) {
// Check if base tag already exists
var baseTagRegex = /<base.*?>/i;
var baseTagMatches = htmlPluginData.html.match(baseTagRegex);
if (!!baseTagMatches) {
// Replace only href attribute
var modifiedBaseTag = baseTagMatches[0].replace(/href="\S+"/i, 'href="' + _this.options.baseHref + '"');
htmlPluginData.html = htmlPluginData.html.replace(baseTagRegex, modifiedBaseTag);
} else {
// Otherwise insert it in top of the head
htmlPluginData.html = htmlPluginData.html.replace(/<head>/i, '$&' + ('<base href="' + _this.options.baseHref + '">'));
}
callback(null, htmlPluginData);
});
callback(null, htmlPluginData);
});
}
}]);
return BaseHrefWebpackPlugin;
}();
});
}
}
{
"name": "base-href-webpack-plugin",
"version": "1.0.0",
"version": "1.0.1",
"description": "Webpack plugin for inserting base href tag in head block",
"main": "index.js",
"main": "./build/index.js",
"typings": "index.d.ts",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/dzonatan/base-href-webpack-plugin.git"
},
"scripts": {
"build": "babel ./es6 --presets es2015 --out-dir .",
"watch": "babel --watch ./es6 --presets es2015 --out-dir .",
"build": "babel ./index.js --presets es2015 --out-dir ./build",
"watch": "babel --watch ./index.js --presets es2015 --out-dir ./build",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
"pretest": "npm run build",
"test": "jasmine ./index.spec.js"
},

@@ -25,4 +31,5 @@ "keywords": [

"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0"
"babel-preset-es2015": "^6.9.0",
"jasmine": "^2.5.3"
}
}
# base-href-webpack-plugin
Webpack plugin for inserting base href tag in head block.
[![Dependency Status](https://gemnasium.com/badges/github.com/dzonatan/base-href-webpack-plugin.svg)](https://gemnasium.com/github.com/dzonatan/base-href-webpack-plugin)
[![npm version](https://badge.fury.io/js/base-href-webpack-plugin.svg)](https://badge.fury.io/js/base-href-webpack-plugin)
# Instalation
**Webpack plugin** for inserting **base href tag** in head block.
`npm install --save base-href-webpack-plugin`
# Prerequisites
This plugin is based on and only works together with [html-webpack-plugin](https://github.com/ampedandwired/html-webpack-plugin).
So keep sure you have installed and used it.
So make sure you have installed and used it.
# Instalation
`npm install --save-dev base-href-webpack-plugin`
# Usage
```javascript
// Import package
const { BaseHrefWebpackPlugin } = require('base-href-webpack-plugin'); // Or `import 'base-href-webpack-plugin';` if using typescript
// Add to plugins
plugins: [
new BaseHrefWebpackPlugin({
baseHref: '/'
})
new BaseHrefWebpackPlugin({ baseHref: '/' })
]
```
If `null` is passed to baseHref then plugin **nothing does** (template is untouched).
Plugin **does nothing** if `null` is passed to `baseHref` option.

@@ -32,2 +37,2 @@ # Contribution

MIT
MIT