Skip to content

Commit

Permalink
Merge branch 'release/v2.3.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ant1mas committed Apr 16, 2023
2 parents 5ee2f99 + 65f0a27 commit 935a772
Show file tree
Hide file tree
Showing 94 changed files with 4,844 additions and 8,641 deletions.
26 changes: 0 additions & 26 deletions .eslintrc.js

This file was deleted.

28 changes: 25 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
/node_modules
/dist
/coverage
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
coverage
dist
dist-ssr
*.local
!*/__tests__/dist

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
4 changes: 0 additions & 4 deletions .prettierrc

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Anton Moskovskiy
Copyright (c) 2023 Anton Moskovskii <ant1mas.dev@gmail.com> (https://github.com/Ant1mas)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README-english.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

# Demo

[Demo page](https://ant1mas.github.io/number-to-words-ru/)
[Demo page](https://number-to-words-ru.ant1mas.dev/)

# Features

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

# Демонстрация работы

[Страница демонстрации работы модуля](https://ant1mas.github.io/number-to-words-ru/)
[Страница демонстрации работы модуля](https://number-to-words-ru.ant1mas.dev/ru)

# Возможности

Expand Down
5 changes: 0 additions & 5 deletions babel.config.json

This file was deleted.

12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test page</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="src/dev/development.ts"></script>
</body>
</html>
27 changes: 0 additions & 27 deletions jest.config.js

This file was deleted.

8 changes: 8 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { Config } from 'jest'

const config: Config = {
preset: 'ts-jest',
modulePaths: ['<rootDir>/'],
}

export default config
46 changes: 21 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
{
"name": "number-to-words-ru",
"version": "2.3.4",
"version": "2.3.5",
"description": "Convert a number to words on russian language.",
"author": "Anton Moskovskii <ant1mas.dev@gmail.com> (https://github.com/Ant1mas)",
"homepage": "https://number-to-words-ru.ant1mas.dev/",
"repository": {
"type": "git",
"url": "https://github.com/Ant1mas/number-to-words-ru.git"
},
"license": "MIT",
"repository": "Ant1mas/number-to-words-ru",
"homepage": "https://ant1mas.github.io/number-to-words-ru/",
"author": "Anton Moskovskiy",
"main": "dist/bundle.js",
"type": "module",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"dev": "webpack serve --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@types/html-webpack-plugin": "^3.2.6",
"@types/jest": "^27.5.1",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.182",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.16.0",
"eslint-config-google": "^0.14.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "4.9.0",
"webpack-merge": "^5.8.0"
"rollup-plugin-visualizer": "^5.9.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vite-tsconfig-paths": "^4.2.0"
},
"keywords": [
"convert",
Expand Down
Loading

0 comments on commit 935a772

Please sign in to comment.