Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
theGC committed Jan 29, 2018
2 parents 1962853 + 4cbc2c1 commit 5ba5b20
Show file tree
Hide file tree
Showing 10 changed files with 1,502 additions and 782 deletions.
518 changes: 342 additions & 176 deletions index.js

Large diffs are not rendered by default.

23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "html-webpack-inline-svg-plugin",
"version": "0.2.2",
"version": "1.0.0",
"description": "Embed svg inline when using the html webpack plugin",
"main": "index.js",
"files": [
Expand All @@ -10,7 +10,8 @@
"scripts": {
"prepublish": "npm run test",
"test": "jasmine",
"debug": "node-debug jasmine"
"debug": "node-debug jasmine",
"build": "node spec/build.js"
},
"repository": {
"type": "git",
Expand All @@ -30,16 +31,18 @@
},
"homepage": "https://github.com/thegc/html-webpack-inline-svg-plugin",
"devDependencies": {
"html-webpack-plugin": "^2.28.0",
"jasmine": "^2.4.1",
"rimraf": "^2.5.2",
"webpack": "^2.4.1"
"file-loader": "^1.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"jasmine": "^2.9.0",
"rimraf": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"chalk": "^2.3.0",
"cheerio": "^1.0.0-rc.2",
"lodash": "^4.17.4",
"parse5": "^3.0.2",
"svgo": "^0.7.2"
"parse5": "^4.0.0",
"svgo": "^1.0.3"
}
}
29 changes: 29 additions & 0 deletions spec/build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
var webpack = require('webpack')
var webpackConfig = require('./webpack.base.config')
var chalk = require('chalk')
var rm = require('rimraf')

rm(webpackConfig.outputDir, (err) => {

if (err) console.log(chalk.red(err))

})

/**
* no testing - just attempt to output the dist folder and files
*
*/

webpack(webpackConfig.options, function (err) {

if (err) {

console.log(chalk.red(err))

return

}

console.log(chalk.green('build complete'))

})
21 changes: 21 additions & 0 deletions spec/fixtures/blank.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Inline SVG Tests blank</title>

<script src="test.js"></script>

</head>

<body>

<div>
<p>should not touch this: <img width="20px" height="auto" class="leave-me" src="images/face.svg"></p>
</div>

</body>

</html>
Binary file added spec/fixtures/images/not-an-svg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 10 additions & 5 deletions spec/fixtures/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,31 @@
<body>

<div>
<p>should not touch this: <img width="20px" height="auto" class="leave-me" src="../spec/fixtures/images/face.svg"></p>
<p>should not touch this: <img width="20px" height="auto" class="leave-me" src="images/face.svg"></p>
<p>
<span>if below SVG is inlined correctly we can reference its content:</span>
<svg class="icon mood-good"><use xlink:href="#icon-mood-good"></use></svg>
</p>
</div>

<section>
<h2>Deep Replace</h2>
<div>
<span>
<img id="deep-replace-me" inline src="spec/fixtures/images/face.svg">
<img id="deep-replace-me" inline src="images/face.svg">
</span>
</div>
</section>

<img id="replace-me" inline src="spec/fixtures/images/moods.svg">
<h2>Inline images</h2>

<img id="then-replace-me" inline src="spec/fixtures/images/another-face.svg">
<img id="replace-me" inline src="images/moods.svg">

<img id="not-an-svg" inline src="spec/fixtures/images/not-an-svg.png">
<img id="replace-an-alias" src="~img/moods.svg">

<img id="then-replace-me" inline src="images/another-face.svg">

<img id="not-an-svg" inline src="images/not-an-svg.png">

<div id="do-not-decode"><?= $foo->bar; ?></div>

Expand Down
8 changes: 4 additions & 4 deletions spec/fixtures/partial.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
</div>

<div>
<p>should not touch this: <img width="20px" height="auto" class="leave-me" src="../spec/fixtures/images/face.svg"></p>
<p>should not touch this: <img width="20px" height="auto" class="leave-me" src="~img/face.svg"></p>
<p>
<span>if below SVG is inlined correctly we can reference its content:</span>
<svg class="icon mood-good"><use xlink:href="#icon-mood-good"></use></svg>
<img id="find-and-replace-me" inline src="spec/fixtures/images/face.svg">
<img id="find-and-replace-me" inline src="images/face.svg">
</p>
</div>

<img id="replace-me" inline src="spec/fixtures/images/moods.svg">
<img id="replace-me" inline src="images/moods.svg">

<img id="not-an-svg" inline src="spec/fixtures/images/not-an-svg.png">
<img id="not-an-svg" inline src="images/not-an-svg.png">

<div id="do-not-decode"><?= $foo->bar; ?></div>

Expand Down
101 changes: 41 additions & 60 deletions spec/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,54 +4,39 @@ var fs = require('fs')
var chalk = require('chalk')
var cheerio = require('cheerio')
var webpack = require('webpack')
var webpackConfig = require('./webpack.base.config')
var rm = require('rimraf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var HtmlWebpackInlineSVGPlugin = require('../')

var OUTPUT_DIR = path.join(__dirname, '../dist')

rm(OUTPUT_DIR, (err) => {
rm(webpackConfig.outputDir, (err) => {

if (err) console.log(chalk.red(err))

})

describe('HtmlWebpackInlineSVGPlugin', function () {

beforeEach(function (done) {

webpack({
entry: path.join(__dirname, 'fixtures', 'entry.js'),
output: {
path: OUTPUT_DIR,
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'fixtures', 'index.html'),
}),
new HtmlWebpackPlugin({
filename: path.resolve(OUTPUT_DIR, 'partial.html'),
template: path.join(__dirname, 'fixtures', 'partial.html'),
}),
new HtmlWebpackInlineSVGPlugin(),
],
}, function (err) {
beforeAll(function (done) {

webpack(webpackConfig.options, (err) => {

expect(err).toBeFalsy()

done()
// callbck is fired before all files hve been written to disk
// due to use of after-emit - place a timeout to try and avoid the issue

setTimeout(done, 2000)

})

})

it('should not inline imgs without inline attribute', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand All @@ -65,11 +50,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('should inline imgs with inline attribute', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand All @@ -83,11 +68,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('should remove img tags with inline attribute', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand All @@ -101,11 +86,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('should remove multiple inlined img tags within the same document', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand All @@ -119,11 +104,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('should ignore images that are not svg', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand All @@ -137,18 +122,14 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('do not html decode content', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

expect(er).toBeFalsy()
fs.readFile(htmlFile, 'utf8', function (err, data) {

var $ = cheerio.load(data, {
decodeEntities: false,
})
expect(err).toBeFalsy()

expect($('#do-not-decode').html())
.toBe('<?= $foo->bar; ?>')
expect(data.indexOf('<?= $foo->bar; ?>'))
.not.toBe(-1)

done()

Expand All @@ -158,11 +139,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('do not touch broken tags', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var re1 = /should output broken tags<\/p>/gi;

Expand All @@ -188,11 +169,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {
*/
it('allow partials to have broken tags', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'partial.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'partial.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

const dataSquashed = data.replace(/\s/g,'')

Expand All @@ -207,11 +188,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('should replace nested inline imgs', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand All @@ -225,11 +206,11 @@ describe('HtmlWebpackInlineSVGPlugin', function () {

it('should contain deep inline SVG', function (done) {

var htmlFile = path.resolve(OUTPUT_DIR, 'index.html')
var htmlFile = path.resolve(webpackConfig.outputDir, 'index.html')

fs.readFile(htmlFile, 'utf8', function (er, data) {
fs.readFile(htmlFile, 'utf8', function (err, data) {

expect(er).toBeFalsy()
expect(err).toBeFalsy()

var $ = cheerio.load(data)

Expand Down
Loading

0 comments on commit 5ba5b20

Please sign in to comment.