-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from StorytellerCZ/feature/update-npm
Update NPM dependencies and tests dependencies
- Loading branch information
Showing
12 changed files
with
2,108 additions
and
1,961 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
METEOR@1.6 | ||
METEOR@2.14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.