Skip to content

Commit

Permalink
Releasing 0.1.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimul Chowdhury committed Apr 5, 2019
1 parent 64c28b2 commit 75dce42
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "hyper",
"description": "A Vue.js project",
"version": "1.0.0",
"author": "Shimul Chowdhury <shimul@divine-it.net>",
"name": "hyper-editor",
"description": "A backend framework independent visual composer for web.",
"version": "0.1.0-beta.1",
"author": "Shimul Chowdhury <shimul[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"main": "src/hyper.js",
"dependencies": {
"bootstrap-vue": "^2.0.0-rc.11",
"deepmerge": "^2.1.1",
Expand Down
5 changes: 3 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ var path = require('path')
var webpack = require('webpack')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const VERSION = require("./package.json").version

module.exports = {
entry: './src/hyper.js',
Expand All @@ -11,7 +12,7 @@ module.exports = {
libraryTarget: 'umd',
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'hyper.js'
filename: 'hyper_editor_'+ VERSION +'.js'
},
module: {
rules: [
Expand Down Expand Up @@ -79,7 +80,7 @@ module.exports = {
]
},
plugins: [
new ExtractTextPlugin("hyper.css"),
new ExtractTextPlugin("hyper_editor_"+VERSION+".css"),
],
resolve: {
alias: {
Expand Down

0 comments on commit 75dce42

Please sign in to comment.