Skip to content

Commit

Permalink
fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
adrai committed Nov 10, 2023
1 parent 83c5d3d commit d51839a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 25 deletions.
1 change: 1 addition & 0 deletions index.d.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './index.js'
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/umd/i18nextResourcesForTS.js",
"types": "./index.d.ts",
"types": "./index.d.mts",
"exports": {
"./package.json": "./package.json",
".": {
"types": {
"require": "./dist/cjs/index.d.ts",
"import": "./dist/esm/index.d.ts"
"import": "./dist/esm/index.d.mts"
},
"module": "./dist/esm/index.js",
"import": "./dist/esm/index.js",
Expand All @@ -36,7 +36,7 @@
"default": "./dist/cjs/index.js"
},
"./esm": {
"types": "./dist/esm/index.d.ts",
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.js"
},
"./src": {
Expand All @@ -48,9 +48,9 @@
},
"scripts": {
"lint:javascript": "eslint .",
"lint:typescript": "eslint -c .ts.eslintrc *.d.ts test/types/**/*.test-d.ts",
"lint:typescript": "eslint -c .ts.eslintrc *.d.ts *.d.mts test/types/**/*.test-d.ts",
"lint": "npm run lint:javascript && npm run lint:typescript",
"build": "rm -rf dist && rollup -c && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json && cp index.d.ts dist/cjs/index.d.ts && cp index.d.ts dist/esm/index.d.ts",
"build": "rm -rf dist && rollup -c && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json && cp index.d.ts dist/cjs/index.d.ts && cp index.d.ts dist/esm/index.d.ts && cp index.d.mts dist/esm/index.d.mts",
"test:typescript": "tsd",
"test": "npm run lint && mocha --colors --reporter spec --recursive test/*.js",
"test:all": "npm run test && npm run test:typescript",
Expand All @@ -59,33 +59,33 @@
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.22.15"
"@babel/runtime": "^7.23.2"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "0.4.3",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@types/mocha": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.48.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^5.0.0",
"i18next": "^23.4.6",
"i18next-chained-backend": "^4.4.0",
"i18next": "^23.7.1",
"i18next-chained-backend": "^4.6.0",
"mocha": "^10.2.0",
"rollup": "^3.28.1",
"rollup": "^4.3.0",
"should": "^13.2.3",
"sinon": "^15.2.0",
"sinon": "^17.0.1",
"tsd": "^0.29.0",
"typescript": "^5.2.2"
},
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"strict": true
},
"include": [
"/test/types/*.test-d.ts",
"/*.d.ts"
"test/types/*.test-d.ts",
"*.d.ts",
"*.d.mts"
]
}

0 comments on commit d51839a

Please sign in to comment.