Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit 5cf4719

Browse files
author
Jared Deckard
committed
Webpack using the UMD target
1 parent 09f4f7a commit 5cf4719

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckar01-task_list",
3-
"version": "2.0.0-rc.5",
3+
"version": "2.0.0-rc.6",
44
"description": "Markdown TaskList components",
55
"homepage": "https://github.com/deckar01/task_list",
66
"devDependencies": {

lib/task_list/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class TaskList
2-
VERSION = [2, 0, '0-rc', 5].join('.')
2+
VERSION = [2, 0, '0-rc', 6].join('.')
33
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckar01-task_list",
3-
"version": "2.0.0-rc.5",
3+
"version": "2.0.0-rc.6",
44
"description": "Markdown TaskList components",
55
"main": "dist/task_list.js",
66
"directories": {

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
entry: './app/assets/javascripts/task_list.coffee',
33
output: {
44
filename: 'dist/task_list.js',
5-
libraryTarget: 'var',
5+
libraryTarget: 'umd',
66
library: 'TaskList',
77
},
88
module: {

0 commit comments

Comments
 (0)