-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lerna setup, and ESLint, Jest and TS configs refactored (#293)
* Lerna setup, and ESLint, Jest and TS configs refactored * updates for CI, removed lint step due to copyright checking failures * use local Lerna in CI * add wildcard path for code coverage upload * wildcards may need v2 of GitHub upload-artifact * attempting CD fixes now for Lerna * YAML typo on cd-preview * still a YAML typo on cd-preview * you need to add --yes for lerna version in CI * typo in YAML (comment inside multi-line run command) * docs build folders added to .gitignore * updates based on PR feedback * use explicit version for GitHub upload-artifact * v0.0.1-featsetup-lerna-239690977-669.0 * moved lerna bootstrap before lerna version * cannot use backslashes to refer to local Lerna on windows * v0.0.1-featsetup-lerna-239757947-671.0 * was missing -- on npm script for version * v0.0.1-featsetup-lerna-239785047-673.0 * Prevent Lerna from pushing prerelease tags * v0.0.1-featsetup-lerna-239799074-675.0 * Prevent learna from pushing prelease tag * Removed deprecated (and unused) Lerna skip-git option * Force lerna to get version number from package.json The default behavior is to look at the git history, but the preview does not push a tag into the history (see https://github.com/lerna/lerna/tree/master/commands/publish#readme for details). * Added response to Lerna prompt on preview * v0.0.1-0.1.1-featsetup-lerna-000-000.000.0 * Added confirmation to publish script * Reverted `lerna.json` * Prepared release CD script Added a build step as a pre-publish step, and removed extraneous lerna bootstrap from preview CD. * Added confirmation flag for preview publication * remove linting from lint-staged Co-authored-by: pmcb55 <[email protected]> Co-authored-by: Nicolas Seydoux <[email protected]> Co-authored-by: NSeydoux <[email protected]>
- Loading branch information
1 parent
8471054
commit ff09201
Showing
232 changed files
with
18,053 additions
and
5,405 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 +1,2 @@ | ||
resources/ | ||
resources/ | ||
node_modules/ |
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,20 @@ | ||
module.exports = { | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["@typescript-eslint", "prettier", "license-header"], | ||
extends: [ | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier/@typescript-eslint", | ||
"plugin:prettier/recommended", | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2018, | ||
sourceType: "module", | ||
}, | ||
rules: { | ||
"prettier/prettier": "error", | ||
"@typescript-eslint/interface-name-prefix": ["error", "always"], | ||
"import/no-unresolved": 0, | ||
"license-header/header": ["error", "./resources/license-header.js"], | ||
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }], | ||
}, | ||
}; |
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
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
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 |
---|---|---|
@@ -1,22 +1,4 @@ | ||
# Changelog | ||
|
||
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### New features | ||
|
||
## [0.1.1] - 2020-08-14 | ||
|
||
### Bugfixes | ||
|
||
- The code wasn't shipped properly when publishing a non-dev release to NPMJS. | ||
|
||
## [0.1.0] - 2020-08-10 | ||
|
||
### New features | ||
|
||
First release! What's possible with this first release: | ||
|
||
- Authenticate a Web app to a Solid Identity provider | ||
- Perform an authenticated fetch to a Pod Server, using a DPoP token | ||
This change log is intended to record changes made across all packages contained | ||
within this mono-repo. |
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,13 @@ | ||
############################################################################### | ||
# | ||
# This file is intended as a template, to be copied to contained packages and | ||
# edited as appropriate for that particular package (including deleting this | ||
# template pre-amble!), and renamed to remove the '-TEMPLATE' suffix. | ||
# | ||
############################################################################### | ||
|
||
Inrupt `solid-client-authn-XXXX` | ||
Copyright 2020 Inrupt Inc. | ||
|
||
This product includes software developed at | ||
Inrupt Inc. (https://inrupt.com/). |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"packages": ["packages/*"], | ||
"version": "0.1.1" | ||
} |
Oops, something went wrong.