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

Add async functions #361

Merged
merged 42 commits into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
fe0811f
add async common methods
bratelefant Apr 10, 2023
0796250
method names
bratelefant Apr 12, 2023
67675d3
buggy Role check fixed
bratelefant Apr 26, 2023
4a56f24
async fixes
bratelefant May 22, 2023
d1ff02d
add roles fixes
bratelefant May 22, 2023
366f4fd
create Role upsert fix
bratelefant May 22, 2023
674957e
Merge pull request #1 from Meteor-Community-Packages/master
bratelefant May 28, 2023
d2fc409
re-added fiber version of createIndex
bratelefant Jul 14, 2023
f549028
Merge branch 'master' into master
StorytellerCZ Jul 15, 2023
2bbfe4a
Merge branch 'Meteor-Community-Packages:master' into master
bratelefant Aug 1, 2023
6451989
build(core): add lint script to package.json
jankapunkt Aug 1, 2023
4c853eb
fix: standard lint fixed
jankapunkt Aug 1, 2023
527307c
tests: added complete working test and dev infrastructure project
jankapunkt Aug 1, 2023
42b26bb
docs: add contribution guidelines and testing guide
jankapunkt Aug 1, 2023
5029e7a
core: update gitignore
jankapunkt Aug 1, 2023
49d6574
core: move package json to testapp
jankapunkt Aug 1, 2023
94566cc
tests: fix tests to enable complete coverage #report
jankapunkt Aug 1, 2023
494d63b
core: add .meteorignore for package publishing
jankapunkt Aug 1, 2023
9109a9c
ci: add testsuite
jankapunkt Aug 1, 2023
bfb1cc5
core: ignore examples folder on publishing
jankapunkt Aug 1, 2023
993bae5
ci: fix matrix args
jankapunkt Aug 1, 2023
62b6822
build(core): move chai dependency to package.json
jankapunkt Aug 1, 2023
cef3778
fix(tests): use correct path in testapp setup script
jankapunkt Aug 1, 2023
e8a0803
fix(tests/ci): update paths and lint args to run linter
jankapunkt Aug 1, 2023
eb544d6
ci: fix tests install
jankapunkt Aug 1, 2023
dea8b43
ci: fix meteor version to 2.12
jankapunkt Aug 1, 2023
eaeb5e6
build(core): add lint script to package.json
jankapunkt Aug 1, 2023
58cb565
fix: standard lint fixed
jankapunkt Aug 1, 2023
9a8e832
tests: added complete working test and dev infrastructure project
jankapunkt Aug 1, 2023
5e22b58
core: update gitignore
jankapunkt Aug 1, 2023
8e175c7
core: move package json to testapp
jankapunkt Aug 1, 2023
796689d
tests: fix tests to enable complete coverage #report
jankapunkt Aug 1, 2023
d9a7ee7
core: add .meteorignore for package publishing
jankapunkt Aug 1, 2023
0caa9f8
ci: add testsuite
jankapunkt Aug 1, 2023
f95eea6
core: ignore examples folder on publishing
jankapunkt Aug 1, 2023
c6920ac
ci: fix matrix args
jankapunkt Aug 1, 2023
ab44ffe
build(core): move chai dependency to package.json
jankapunkt Aug 1, 2023
a690b71
fix(tests): use correct path in testapp setup script
jankapunkt Aug 1, 2023
5e788e2
fix(tests/ci): update paths and lint args to run linter
jankapunkt Aug 1, 2023
5ab1106
ci: fix tests install
jankapunkt Aug 1, 2023
111c251
ci: fix meteor version to 2.12
jankapunkt Aug 1, 2023
20ab907
rebase
bratelefant Aug 1, 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ docs/
node_modules/
.npm/
someapp/
.DS_Store
1 change: 1 addition & 0 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Package.onUse(function (api) {
api.export('Roles')

api.addFiles('roles/roles_common.js', both)
api.addFiles('roles/roles_common_async.js', both)
api.addFiles('roles/roles_server.js', 'server')
api.addFiles([
'roles/client/debug.js',
Expand Down
Loading