Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
kouts committed Dec 21, 2018
2 parents 4afdf30 + 1fc4f58 commit 8184585
Show file tree
Hide file tree
Showing 7 changed files with 203 additions and 86 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ In order to start development:

```sh
npm i
npm run dev
npm run watch
```
9 changes: 7 additions & 2 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<title>ractive-modal demo page</title>

<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
<!-- Bootstrap 4 CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

<!-- Animate -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
Expand Down Expand Up @@ -595,6 +595,11 @@ <h5>ractive-modal comes with integrated focus management - How it works</h5>
<div class="col-sm-12">
<h2 class="pb-2">Changelog</h2>

<h5>version 0.3.2</h5>
<ul>
<li>Fixed build when used in module environment via import.</li>
</ul>

<h5>version 0.3.1</h5>
<ul>
<li>Added opening event.</li>
Expand Down
207 changes: 188 additions & 19 deletions dist/ractive-modal.js

Large diffs are not rendered by default.

10 changes: 1 addition & 9 deletions dist/ractive-modal.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"//": "To use type: npm run dev",
"//": "To use type: npm run watch",
"name": "ractive-modal",
"version": "0.3.1",
"version": "0.3.2",
"description": "A modal popup component for ractive",
"main": "dist/ractive-modal.js",
"repository": "https://github.com/kouts/ractive-modal",
Expand All @@ -12,15 +12,15 @@
"popup"
],
"devDependencies": {
"onchange": "*",
"ractive": "*",
"ractive": "^1.1.1",
"ractive-bin-loader": "^1.0.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"scripts": {
"start": "webpack --config webpack.config.js"
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch"
},
"author": "kouts",
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const UglifyJsPlugin = require('uglifyjs-webpack-plugin');

module.exports = {
node: false,
mode: 'development',
mode: 'production',
target: 'web',
context: path.resolve(__dirname, 'src'),
optimization: {
Expand Down
49 changes: 0 additions & 49 deletions webpack.config.old.js

This file was deleted.

0 comments on commit 8184585

Please sign in to comment.