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

Added usehotkeys hook #9

Merged
merged 35 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a031984
Added required dependencies
anmol-kumar0815 Nov 16, 2023
a50731b
Added usehotkeys hook
anmol-kumar0815 Nov 16, 2023
a296a19
Added webpack config
anmol-kumar0815 Nov 16, 2023
21cf397
Added webpack config
anmol-kumar0815 Nov 16, 2023
13bbc13
Added webpack config
anmol-kumar0815 Nov 16, 2023
6447895
Added some missing configs
anmol-kumar0815 Nov 16, 2023
5dfd1bf
Added npm ignore
anmol-kumar0815 Nov 16, 2023
5adcc71
v1.0.2
anmol-kumar0815 Nov 16, 2023
feb0851
Updated package name
anmol-kumar0815 Nov 16, 2023
da5ff18
Merge branch 'main' into 3-add-usehotkeys-hook
anmol-kumar0815 Nov 16, 2023
af17b19
Removed redundent dependencies
anmol-kumar0815 Nov 16, 2023
1332027
Removed webpack
anmol-kumar0815 Nov 16, 2023
c03846f
Added rollup config
anmol-kumar0815 Nov 16, 2023
763100a
Fixed package name
anmol-kumar0815 Nov 16, 2023
7577117
Enabled ensure-compact-objects
anmol-kumar0815 Nov 17, 2023
8f404e6
Enabled webpack-aliases-and-jsconfig-paths-should-be-in-sync
anmol-kumar0815 Nov 17, 2023
00c0974
Merge branch 'main' into 3-add-usehotkeys-hook
bot-bigbinary Nov 17, 2023
a385d43
#3 - Removed dependencies list and added missing babel plugin.
deepakjosp Dec 4, 2023
cbb3e43
#3 - Updated eslint ignore files list.
deepakjosp Dec 4, 2023
aacaa28
#3 - Omitted prettier and eslint write and checks from package.json a…
deepakjosp Dec 4, 2023
0976e10
#3 - Removed unnecessary peer dependencies and bundled it along with …
deepakjosp Dec 4, 2023
3714185
#3 - Added babel core package.
deepakjosp Dec 4, 2023
7aebe93
#3 - Removed hardsetting env value in rollup config
deepakjosp Dec 4, 2023
d25fc17
#3 - Removed unused plugin
deepakjosp Dec 4, 2023
de7d576
#3 - Fixed the version mismatch issues of rollup and it's plugins
deepakjosp Dec 4, 2023
238f387
Added aliases for constants and utils and fixed issues in rollup.config
deepakjosp Dec 4, 2023
e1dd279
#3 - Refactored constant util with absolute path.
deepakjosp Dec 4, 2023
bcae4c9
#3 - Removed unnecessary file ref from eslintignore
deepakjosp Dec 4, 2023
0e991e3
#3 - Set `@bigbinary/neeto/webpack-aliases-and-jsconfig-paths-should-…
deepakjosp Dec 4, 2023
25316b5
#3 - Fixed eslint dependencies version issues.
deepakjosp Dec 4, 2023
e527fe3
#3 - Moved util functions to util file\.
deepakjosp Dec 4, 2023
00019b2
#3 - Cleaned up the rollup config.
deepakjosp Dec 5, 2023
a33a196
#3 - Fixed issues in the publish scripts.
deepakjosp Dec 5, 2023
e99df01
#3 - Removed commonjs configurations from the build script
deepakjosp Dec 5, 2023
2972366
#3 - Added cjs bundle build method.
deepakjosp Dec 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ tmp
babel.config.js
webpack.config.js
dist
rollup.config.js
.eslintrc.js
.prettierrc.js
jsconfig.json
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ module.exports = mergeDeepLeft(
{
rules: {
"@bigbinary/neeto/no-missing-localization": "off",
"@bigbinary/neeto/webpack-aliases-and-jsconfig-paths-should-be-in-sync":
"off",
},
},
defaultConfig
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_and_publish_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

- name: Setup git user
run: |
git config user.name "Anmol Kumar"
git config user.email "anmol.kumar@bigbinary.com"
git config user.name "Joseph Mathew"
git config user.email "joseph.mathew@bigbinary.com"
- name: Setup NodeJS LTS version
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: yarn build

- name: Publish the package on NPM
uses: JS-DevTools/npm-publish@v1
uses: JS-DevTools/npm-publish@v3
with:
access: "public"
token: ${{ secrets.NPM_TOKEN }}
242 changes: 236 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,240 @@
# dependencies
/node_modules
# Ignore bundler config
/.bundle

# Ignore all SQLite databases
/db/*.sqlite3*

# Ignore database.yml file
/config/database.yml

# Ignore all logfiles
/log/*
/tmp
/db/backups
/public/uploads
*.DS_Store
coverage
.*swp
/uploads/*
.byebug_history

# Ignore node packages
node_modules

# Rails specific ignores
/storage
/vendor
test/reports
test/fixtures
/public/packs
/public/assets
/public/packs-test

# Ignore master key for decrypting credentials and more
/config/master.key

# Ignore environment variables
/.env
/.env.development.local

#---------------------------------------#
# IDEs & Editors Ignores #
#---------------------------------------#
# Sublime Text
*.sublime*
.sublime-gulp.cache
# JetBrains IDEs
.idea/
# VIM
## Session
Session.vim
Sessionx.vim
## Temporary
.netrwhist
## Backup and swap files
*~
## Auto-generated tag files
/tags
# Vscode
.vscode-test

#---------------------------------------#
# Linux Ignores #
#---------------------------------------#
# directory preferences
.directory

#---------------------------------------#
# OSX Ignores #
#---------------------------------------#
.DS_Store
.AppleDouble
.LSOverride
.localized

#---------------------------------------#
# Windows Ignores #
#---------------------------------------#
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Files that might appear on external disk
.Spotlight-V100
.Trashes

#---------------------------------------#
# Tools and Package specific ignores #
#---------------------------------------#
.eslintcache
yarn-error.log
yarn-debug.log*
.yarn-integrity
.yarnrc
yarn-1.22.5.cjs
yarn-1.22.5.js

# Ignore redis dump file
dump.rdb

# production
/build
/dist

npm-debug.log*
/initializers*
/react*
/cypress*.*
/utils*
/pure*
/constants*

# Ignore yalc generated files
yalc.lock
/.yalc

/index.cjs.js
/index.cjs.js.map
/index.mjs
/index.mjs.map
/index.d.ts
# Ignore bundler config
/.bundle

# Ignore all SQLite databases
/db/*.sqlite3*

# Ignore database.yml file
/config/database.yml

# Ignore all logfiles
/log/*
/tmp
/db/backups
/public/uploads
*.DS_Store
coverage
.*swp
/uploads/*
.byebug_history

# Ignore node packages
node_modules

# Rails specific ignores
/storage
/vendor
test/reports
test/fixtures
/public/packs
/public/assets
/public/packs-test

# Ignore master key for decrypting credentials and more
/config/master.key

# Ignore environment variables
/.env
/.env.development.local

#---------------------------------------#
# IDEs & Editors Ignores #
#---------------------------------------#
# Sublime Text
*.sublime*
.sublime-gulp.cache
# JetBrains IDEs
.idea/
# VIM
## Session
Session.vim
Sessionx.vim
## Temporary
.netrwhist
## Backup and swap files
*~
## Auto-generated tag files
/tags
# Vscode
.vscode-test

#---------------------------------------#
# Linux Ignores #
#---------------------------------------#
# directory preferences
.directory

#---------------------------------------#
# OSX Ignores #
#---------------------------------------#
.DS_Store
.AppleDouble
.LSOverride
.localized

#---------------------------------------#
# Windows Ignores #
#---------------------------------------#
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Files that might appear on external disk
.Spotlight-V100
.Trashes

#---------------------------------------#
# Tools and Package specific ignores #
#---------------------------------------#
.eslintcache
yarn-error.log
yarn-debug.log*
yarn-error.log*
.yarn-integrity
.yarnrc
yarn-1.22.5.cjs
yarn-1.22.5.js

# Ignore redis dump file
dump.rdb

/dist

/initializers*
/react*
/cypress*.*
/utils*
/pure*
/constants*

# Ignore yalc generated files
yalc.lock
/.yalc

/index.cjs.js
/index.cjs.js.map
/index.mjs
/index.mjs.map
/index.d.ts
15 changes: 15 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Development and build-related files
node_modules/
.eslintignore
.eslintrc
.prettierignore
.prettierrc
babel.config.js
webpack.config.js

# Editor-specific files and directories
.vscode/

# Documentation and configuration files not needed for users
README.md
.editorconfig
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.12
6 changes: 1 addition & 5 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,5 @@
"**/node_modules",
"**/.*/"
],
"include": [
"./**/*.js",
"./**/*.jsx",
"./**/*.d.ts"
]
"include": ["./**/*.js", "./**/*.jsx", "./**/*.d.ts"]
}
Loading