Skip to content

Commit

Permalink
Merge pull request #72 from i18next/1.0.0
Browse files Browse the repository at this point in the history
1.0.0
  • Loading branch information
karellm authored Feb 24, 2018
2 parents 61c7201 + 2be2e73 commit 69292ca
Show file tree
Hide file tree
Showing 47 changed files with 5,665 additions and 1,594 deletions.
8 changes: 8 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"presets": ["env"],
"plugins": [
"transform-object-rest-spread"
],
"sourceMaps": true,
"retainLines": true
}
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2

[*.{diff,md}]
trim_trailing_whitespace = false
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
language: node_js

node_js:
- '8'
- '7'
- '6'
- '5'
- '4'
Expand All @@ -10,4 +12,4 @@ before_install:
- npm --version

after_success:
- npm run test
- npm run test
35 changes: 35 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"cwd": "${workspaceRoot}",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u", "tdd",
"--timeout", "999999",
"--colors",
"--require", "babel-register",
"--require", "babel-polyfill",
"--plugins", "transform-object-rest-spread",
"${workspaceFolder}/test/**/*.test.js"
],
"runtimeArgs": [
"--nolazy"
],
"sourceMaps": true,
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/helpers.js"
}
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.0-beta1



## 0.13.0 - latest

- Support `defaultValue` option along the translation key (#68)
Expand Down
Loading

0 comments on commit 69292ca

Please sign in to comment.