Skip to content

Commit

Permalink
Merge pull request #9 from StorytellerCZ/feature/update-npm
Browse files Browse the repository at this point in the history
Update NPM dependencies and tests dependencies
  • Loading branch information
StorytellerCZ authored Jan 14, 2024
2 parents e6baed0 + 148ad16 commit 0851072
Show file tree
Hide file tree
Showing 12 changed files with 2,108 additions and 1,961 deletions.
49 changes: 0 additions & 49 deletions .circleci/config.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "34 22 * * 4"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ javascript ]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"
31 changes: 31 additions & 0 deletions .github/workflows/comment-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Add immediate comment on new issues

on:
issues:
types: [opened]

jobs:
createComment:
runs-on: ubuntu-latest
steps:
- name: Create Comment
uses: peter-evans/[email protected]
with:
issue-number: ${{ github.event.issue.number }}
body: |
Thank you for submitting this issue!
We, the Members of Meteor Community Packages take every issue seriously.
Our goal is to provide long-term lifecycles for packages and keep up
with the newest changes in Meteor and the overall NodeJs/JavaScript ecosystem.
However, we contribute to these packages mostly in our free time.
Therefore, we can't guarantee you issues to be solved within certain time.
If you think this issue is trivial to solve, don't hesitate to submit
a pull request, too! We will accompany you in the process with reviews and hints
on how to get development set up.
Please also consider sponsoring the maintainers of the package.
If you don't know who is currently maintaining this package, just leave a comment
and we'll let you know
34 changes: 34 additions & 0 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Test suite

on:
push:
branches:
- master
- develop
pull_request:

jobs:
tests:
name: tests
runs-on: ubuntu-latest
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired
steps:
- name: checkout
uses: actions/checkout@v4

- name: Setup meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: '2.14'

- name: cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: cd tests && meteor npm install && meteor npm run test
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Update to depend on `aldeed:[email protected]`. Add the appropriate Meteor version constraints, starting lowest with Meteor v1.12.1.

Update NPM dependencies
Update testing dependencies

## 3.0.0

Expand Down
6 changes: 2 additions & 4 deletions package/deny/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ Package.describe({

Package.onUse(function(api) {
api.versionsFrom(['1.12.1', '2.3.6', '2.8.1']);
api.use([
'aldeed:[email protected]',
'ecmascript',
]);
api.use('aldeed:[email protected]');
api.use('ecmascript');

api.mainModule('deny.js');
});
2 changes: 2 additions & 0 deletions tests/.meteor/.finished-upgraders
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ notices-for-facebook-graph-api-2
1.4.1-add-shell-server-package
1.4.3-split-account-service-packages
1.5-add-dynamic-import-package
1.7-split-underscore-from-meteor-base
1.8.3-split-jquery-from-blaze
24 changes: 12 additions & 12 deletions tests/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base@1.2.0 # Packages every Meteor app needs to have
mobile-experience@1.0.5 # Packages for a great mobile UX
mongo@1.3.0 # The database Meteor supports right now
meteor-base@1.5.1 # Packages every Meteor app needs to have
mobile-experience@1.1.1 # Packages for a great mobile UX
mongo@1.16.8 # The database Meteor supports right now
[email protected] # Compile .html files into Meteor Blaze views
[email protected].11 # Reactive variable for tracker
[email protected].12 # Reactive variable for tracker
[email protected] # Helpful client-side library
tracker@1.1.3 # Meteor's client-side reactive programming library
tracker@1.3.3 # Meteor's client-side reactive programming library

standard-minifier-css@1.3.5 # CSS minifier run for production mode
standard-minifier-js@2.2.0 # JS minifier run for production mode
es5-shim@4.6.15 # ECMAScript 5 compatibility for older browsers.
ecmascript@0.9.0 # Enable ECMAScript2015+ syntax in app code
shell-server@0.3.0 # Server-side component of the `meteor shell` command
standard-minifier-css@1.9.2 # CSS minifier run for production mode
standard-minifier-js@2.8.1 # JS minifier run for production mode
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers.
ecmascript@0.16.8 # Enable ECMAScript2015+ syntax in app code
shell-server@0.5.0 # Server-side component of the `meteor shell` command

[email protected] # Publish all data to the clients (for prototyping)
[email protected] # Allow all DB writes from clients (for prototyping)

[email protected].10
[email protected].13
aldeed:schema-deny
dynamic-import
dynamic-import@0.7.3
meteortesting:mocha
aldeed:[email protected]
2 changes: 1 addition & 1 deletion tests/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
METEOR@1.6
METEOR@2.14
159 changes: 82 additions & 77 deletions tests/.meteor/versions
Original file line number Diff line number Diff line change
@@ -1,82 +1,87 @@
aldeed:collection2@3.0.0
aldeed:schema-deny@3.0.0
[email protected].0
aldeed:collection2@3.5.0
aldeed:schema-deny@3.1.0
[email protected].1
[email protected]
autoupdate@1.3.12
babel-compiler@6.24.7
babel-runtime@1.1.1
[email protected].10
[email protected].10
blaze@2.3.2
blaze-html-templates@1.1.2
blaze-tools@1.0.10
boilerplate-generator@1.3.1
caching-compiler@1.1.9
caching-html-compiler@1.1.2
callback-hook@1.0.10
check@1.2.5
[email protected].0
ddp-client@2.2.0
ddp-common@1.3.0
ddp-server@2.1.1
deps@1.0.12
diff-sequence@1.0.7
dynamic-import@0.2.1
ecmascript@0.9.0
ecmascript-runtime@0.5.0
ecmascript-runtime-client@0.5.0
[email protected]
[email protected].0
[email protected]
[email protected].10
autoupdate@1.8.0
babel-compiler@7.10.5
babel-runtime@1.5.1
[email protected].12
[email protected].11
blaze@2.8.0
blaze-html-templates@1.2.1
blaze-tools@1.1.4
boilerplate-generator@1.7.2
caching-compiler@1.2.2
caching-html-compiler@1.2.2
callback-hook@1.5.1
check@1.3.2
[email protected].1
ddp-client@2.6.1
ddp-common@1.4.0
ddp-server@2.7.0
diff-sequence@1.1.2
dynamic-import@0.7.3
ecmascript@0.16.8
ecmascript-runtime@0.8.1
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
[email protected]
[email protected].0
[email protected]
[email protected].11
[email protected]
html-tools@1.0.11
htmljs@1.0.11
http@1.3.0
id-map@1.0.9
html-tools@1.1.4
htmljs@1.2.0
http@2.0.0
id-map@1.1.1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
practicalmeteor:[email protected]
[email protected]
raix:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
tmeasday:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
raix:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
tmeasday:[email protected]
[email protected]
[email protected]
[email protected]
[email protected].10
url@1.1.0
webapp@1.4.0
webapp-hashing@1.0.9
[email protected].13
url@1.3.2
webapp@1.13.6
webapp-hashing@1.1.1
Loading

0 comments on commit 0851072

Please sign in to comment.