Skip to content

Commit

Permalink
Disable the problematic Galician locale (#886)
Browse files Browse the repository at this point in the history
  • Loading branch information
kossnocorp committed Sep 21, 2018
1 parent 12eb23a commit ebccdd5
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Expand Up @@ -132,8 +132,6 @@ for the list of changes made since `v2.0.0-alpha.1`.

- [vi locale is updated for v2 format](https://github.com/date-fns/date-fns/pull/846). Kudos to [@lihop](https://github.com/lihop) and [@trongthanh](https://github.com/trongthanh).

- [gl locale](https://github.com/date-fns/date-fns/pull/859). Thanks to [@cocodinTech](https://github.com/cocodinTech).

- [fi locale is updated for v2 format](https://github.com/date-fns/date-fns/pull/775). Kudos to [@sjuvonen](https://github.com/sjuvonen).


Expand Down
1 change: 1 addition & 0 deletions flow-typed/mocha.js.flow
@@ -1,4 +1,5 @@
// @flow
declare var xdescribe: (description: string, spec: () => void) => void
declare var describe: (description: string, spec: () => void) => void
declare var it: (description: string, spec: () => void) => void
declare var context: (description: string, spec: () => void) => void
Expand Down
1 change: 1 addition & 0 deletions outdatedLocales.json
Expand Up @@ -10,6 +10,7 @@
"et",
"fi",
"fil",
"gl",
"fr-CH",
"hr",
"id",
Expand Down
1 change: 0 additions & 1 deletion src/esm/locale/index.js
Expand Up @@ -8,7 +8,6 @@ export {default as enUS} from './en-US/index.js'
export {default as eo} from './eo/index.js'
export {default as es} from './es/index.js'
export {default as fr} from './fr/index.js'
export {default as gl} from './gl/index.js'
export {default as he} from './he/index.js'
export {default as hu} from './hu/index.js'
export {default as it} from './it/index.js'
Expand Down
2 changes: 1 addition & 1 deletion src/locale/gl/_lib/formatDistance/test.js
Expand Up @@ -4,7 +4,7 @@
import assert from 'power-assert'
import formatDistance from '.'

describe('es locale > formatDistance', function () {
xdescribe('gl locale > formatDistance', function () {
describe('lessThanXSeconds', function () {
context('when the count equals 1', function () {
it('returns a proper string', function () {
Expand Down
2 changes: 1 addition & 1 deletion src/locale/gl/test.js
Expand Up @@ -10,7 +10,7 @@ import formatDistanceStrict from '../../formatDistanceStrict'
import formatRelative from '../../formatRelative'
import parse from '../../parse'

describe('gl locale', function () {
xdescribe('gl locale', function () {
context('with `format`', function () {
var date = new Date(1986, 3 /* Apr */, 5, 10, 32, 0, 900)

Expand Down
1 change: 0 additions & 1 deletion src/locale/index.js
Expand Up @@ -9,7 +9,6 @@ module.exports = {
eo: require('./eo/index.js'),
es: require('./es/index.js'),
fr: require('./fr/index.js'),
gl: require('./gl/index.js'),
he: require('./he/index.js'),
hu: require('./hu/index.js'),
it: require('./it/index.js'),
Expand Down

0 comments on commit ebccdd5

Please sign in to comment.