Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes/cleanup #128

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -22,6 +22,7 @@ Thumbs.db
# node files
node_modules/
npm-debug.log
yarn-error.log

# project files
.idea/
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,8 +1,8 @@
language: node_js

node_js:
- '10'
- '8'
- '7'
- '6'

before_install:
Expand Down
3 changes: 0 additions & 3 deletions i18next-parser.config.js

This file was deleted.

26 changes: 13 additions & 13 deletions package.json
Expand Up @@ -17,23 +17,23 @@
"url": "https://github.com/i18next/i18next-parser"
},
"dependencies": {
"acorn": "^5.5.3",
"acorn": "^5.7.3",
"acorn-es7": "^0.1.0",
"acorn-jsx": "^4.1.1",
"acorn-object-rest-spread": "^1.1.0",
"acorn-stage3": "^0.6.0",
"broccoli-plugin": "^1.3.0",
"broccoli-plugin": "^1.3.1",
"cheerio": "^1.0.0-rc.2",
"colors": "~1.2.0-rc0",
"commander": "~2.9.0",
"concat-stream": "~1.6.0",
"colors": "^1.3.2",
"commander": "^2.18.0",
"concat-stream": "^1.6.2",
"eol": "^0.9.1",
"fs-extra": "^6.0.1",
"fs-extra": "^7.0.0",
"gulp-sort": "^2.0.0",
"rsvp": "^4.8.2",
"through2": "~2.0.3",
"vinyl": "~2.0.1",
"vinyl-fs": "^3.0.2",
"rsvp": "^4.8.4",
"through2": "^2.0.3",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3",
"yamljs": "^0.3.0"
},
"optionalDependencies": {},
Expand All @@ -42,16 +42,16 @@
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"broccoli": "^1.1.4",
"broccoli-funnel": "^2.0.1",
"chai": "^4.1.2",
"gulp": "^4.0.0",
"mocha": "^5.0.0",
"mocha": "^5.2.0",
"typescript": "^3.0.3"
},
"keywords": [
Expand Down
2 changes: 0 additions & 2 deletions src/broccoli.js
@@ -1,6 +1,4 @@
import colors from 'colors'
import fse from 'fs-extra'
import path from 'path'
import Plugin from 'broccoli-plugin'
import i18nTransform from '../dist/transform'
import rsvp from 'rsvp'
Expand Down
2 changes: 0 additions & 2 deletions src/lexers/typescript-lexer.js
@@ -1,6 +1,4 @@
import JsxLexer from './jsx-lexer'
import { readFileSync } from 'fs'
import { join } from 'path'

let loadedTs = null
function loadTypeScript() {
Expand Down
1 change: 0 additions & 1 deletion src/parser.js
Expand Up @@ -4,7 +4,6 @@ import HTMLLexer from './lexers/html-lexer'
import JavascriptLexer from './lexers/javascript-lexer'
import JsxLexer from './lexers/jsx-lexer'
import TypescriptLexer from './lexers/typescript-lexer'
import path from 'path'

const lexers = {
hbs: ['HandlebarsLexer'],
Expand Down
3 changes: 0 additions & 3 deletions test/i18next-parser.config.js

This file was deleted.