Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Small changes for next alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
dschissler committed Dec 1, 2014
1 parent aa07d14 commit 36baf53
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
8 changes: 5 additions & 3 deletions app/webpack/modules/locale/locale.coffee
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
'use strict'
# system
Jed = require 'jed'
# constants
localeDefault = LOCALE_CONFIG.default
map = LOCALE_CONFIG.map
# configuration
localeConfig = require "#{LOCALE_ROOT}/config"

localeDefault = localeConfig.default
map = localeConfig.map

langRaw = window.navigator.userLanguage || window.navigator.language
langParts = langRaw.replace('-', '_').split('_')
Expand Down
2 changes: 1 addition & 1 deletion dev/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webird",
"version": "0.5.0-alpha2",
"version": "0.5.0-alpha3",
"devDependencies": {
"bootstrap": "~3.3.1",
"jquery": "~2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion dev/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webird/framework",
"description": "Webird Phalcon/Webpack Framework",
"version": "0.5.0-alpha2",
"version": "0.5.0-alpha3",
"require": {
"php": ">=5.5",
"ext-phalcon": ">=1.3.2",
Expand Down
9 changes: 5 additions & 4 deletions dev/gulpfile.webpack.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ wpConf =
highlight: 'highlight.js/lib/highlight'

extensions: [
""
".js", ".coffee"
".html", ".hbs"
".css", ".scss", ".less"
''
'.js', '.coffee'
'.html', '.hbs'
'.css', '.scss', '.less'
'.json', '.yaml'
]

resolveLoader:
Expand Down
4 changes: 2 additions & 2 deletions dev/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "webird",
"version": "0.5.0-alpha2",
"version": "0.5.0-alpha3",
"dependencies": {},
"devDependencies": {
"coffee-script": "~1.8.0",
"gulp": "~3.8.10",
"gulp-util": "~3.0.1",
"js-yaml": "~3.2.3",
"webpack": "~1.4.13",
"webpack-dev-server": "~1.6.5",
"extract-text-webpack-plugin": "~0.3.4",
"coffee-script": "~1.8.0",
"coffee-loader": "~0.7.2",
"bundle-loader": "~0.5.2",
"json-loader": "~0.5.1",
Expand Down

0 comments on commit 36baf53

Please sign in to comment.