Skip to content

Commit

Permalink
Make tutorials use new bundle setup
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmullen committed Aug 9, 2018
1 parent 4a30533 commit 34e6b63
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion tutorials/basic/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ block mainTutorial
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="../../built/geo.ext.min.js"></script>
<script type="text/javascript" src="../../built/geo.min.js"></script>
</head>
<body>
Expand Down
1 change: 0 additions & 1 deletion tutorials/common/tutorials.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ var processBlockInfo = {
/* We could also load from the CDN:
* https://cdnjs.cloudflare.com/ajax/libs/geojs/0.12.2/geo.min.js
* or the non-minified versions to make debug easier. */
' <script type="text/javascript" src="../../built/geo.ext.min.js"></script>\n' +
' <script type="text/javascript" src="../../built/geo.min.js"></script>\n' +
'</head>\n' +
'<body>\n' +
Expand Down
1 change: 0 additions & 1 deletion tutorials/editor3/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ block mainTutorial
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="../../built/geo.ext.min.js"></script>
<script type="text/javascript" src="../../built/geo.min.js"></script>
<!-- Use a specific version of GeoJS by requesting it from a CDN.
For instance, remove the local references, above, and
Expand Down
1 change: 0 additions & 1 deletion tutorials/video_transport/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ block mainTutorial
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="../../built/geo.ext.min.js"></script>
<script type="text/javascript" src="../../built/geo.min.js"></script>
</head>
<body>
Expand Down
3 changes: 0 additions & 3 deletions webpack-tutorials.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const StringReplacePlugin = require('string-replace-webpack-plugin');
var path = require('path');

var base = require('./webpack.config');
var external = require('./external.config');

var rules = base.module.rules.concat([{
test: /\.pug$/,
Expand Down Expand Up @@ -33,8 +32,6 @@ var rules = base.module.rules.concat([{
})
}]);

rules = rules.concat(external.module.rules);

var plugins = base.plugins;
plugins.push(new StringReplacePlugin());

Expand Down

0 comments on commit 34e6b63

Please sign in to comment.