-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Published freedombase:[email protected]
- Loading branch information
1 parent
de0028d
commit 072204e
Showing
7 changed files
with
49 additions
and
29 deletions.
There are no files selected for viewing
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,4 +1,3 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run lint |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,16 +1,27 @@ | ||
/* global Package */ | ||
Package.describe({ | ||
name: 'freedombase:legal-management', | ||
version: '1.7.0', | ||
version: '1.7.1', | ||
summary: 'Manage your legal documents and user consent.', | ||
git: 'https://github.com/freedombase/meteor-legal-management', | ||
documentation: 'README.md' | ||
}) | ||
|
||
Package.onUse(function (api) { | ||
api.versionsFrom('2.3') | ||
api.use(['meteor', 'ecmascript', 'check', 'mongo', 'typescript', 'callback-hook']) | ||
api.use(['aldeed:[email protected]', 'aldeed:[email protected]', 'aldeed:[email protected]']) | ||
api.use([ | ||
'meteor', | ||
'ecmascript', | ||
'check', | ||
'mongo', | ||
'typescript', | ||
'callback-hook' | ||
]) | ||
api.use([ | ||
'aldeed:[email protected]', | ||
'aldeed:[email protected]', | ||
'aldeed:[email protected]' | ||
]) | ||
// 'socialize:[email protected]' | ||
|
||
api.mainModule('common.ts', 'client') | ||
|
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