Skip to content

Commit

Permalink
update project
Browse files Browse the repository at this point in the history
  • Loading branch information
adrai committed Oct 16, 2023
1 parent 6843c7f commit 609dbc0
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 36 deletions.
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

[![Actions](https://github.com/i18next/i18next-resources-to-backend/workflows/node/badge.svg)](https://github.com/i18next/i18next-resources-to-backend/actions?query=workflow%3Anode)
[![Actions deno](https://github.com/i18next/i18next-resources-to-backend/workflows/deno/badge.svg)](https://github.com/i18next/i18next-resources-to-backend/actions?query=workflow%3Adeno)
[![Travis](https://img.shields.io/travis/i18next/i18next-resources-to-backend/master.svg?style=flat-square)](https://travis-ci.org/i18next/i18next-resources-to-backend)
[![npm version](https://img.shields.io/npm/v/i18next-resources-to-backend.svg?style=flat-square)](https://www.npmjs.com/package/i18next-resources-to-backend)

This package helps to transform resources to an i18next backend. To be used in Node.js, in the browser and for Deno.
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,35 +58,35 @@
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.21.5"
"@babel/runtime": "^7.23.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/mocha": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^5.0.0",
"i18next": "^22.5.0",
"i18next-chained-backend": "^4.2.0",
"i18next": "^23.5.1",
"i18next-chained-backend": "^4.5.0",
"mocha": "^10.2.0",
"rollup": "^2.79.1",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"rollup": "^4.1.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup-plugin-terser": "^7.0.2",
"should": "^13.2.3",
"sinon": "^15.1.0",
"tsd": "^0.28.1",
"typescript": "^5.0.4"
"sinon": "^16.1.0",
"tsd": "^0.29.0",
"typescript": "^5.2.2"
},
"tsd": {
"directory": "test/types"
Expand Down
3 changes: 2 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { babel } from '@rollup/plugin-babel'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
import commonjs from '@rollup/plugin-commonjs'
import pkg from './package.json'
import { readFileSync } from 'fs'
const pkg = JSON.parse(readFileSync(new URL('package.json', import.meta.url)))

const getBabelOptions = ({ useESModules, plugins = [] }) => ({
exclude: /node_modules/,
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"strict": true
},
"include": [
"/test/types/*.test-d.ts",
"/*.d.ts"
"test/types/*.test-d.ts",
"*.d.ts"
]
}

0 comments on commit 609dbc0

Please sign in to comment.