Skip to content

Commit

Permalink
fix: wrong minified css file (close #96)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dongsik Yoo committed May 11, 2018
1 parent dc2fb9b commit 0c3b4bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 108 deletions.
104 changes: 1 addition & 103 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "NHNEnt FE Development Lab <dl_javascript@nhnent.com>",
"version": "1.1.0",
"main": "dist/tui-calendar.js",
"license:": "MIT",
"license": "MIT",
"description": "TOAST UI Calendar",
"repository": {
"type": "git",
Expand Down Expand Up @@ -54,8 +54,6 @@
"karma-webdriver-launcher": "git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0",
"karma-webpack": "^1.8.0",
"preprocess-loader": "^0.2.0",
"preprocessify": "0.0.6",
"preprocessor-loader": "^1.0.5",
"safe-umd-webpack-plugin": "0.0.2",
"style-loader": "^0.13.1",
"stylus": "^0.53.0",
Expand Down
2 changes: 1 addition & 1 deletion src/css/variables.styl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Variables
// default prefix
css-prefix = '/* @echo CSS_PREFIX */'
css-prefix = 'tui-full-calendar-'
// Dayname
dayname = css-prefix + 'dayname-'
// Taskview
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var SafeUmdPlugin = require('safe-umd-webpack-plugin');
var isProduction = process.env.NODE_ENV === 'production';
var FILENAME = pkg.name + (isProduction ? '.min' : '');
var BANNER = [
FILENAME,
'TOAST UI Calendar',
'@version ' + pkg.version + ' | ' + new Date().toDateString(),
'@author ' + pkg.author,
'@license ' + pkg.license
Expand Down

0 comments on commit 0c3b4bf

Please sign in to comment.