Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
42 changes: 42 additions & 0 deletions bin/mark-non-lab-packages-private.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/usr/bin/env node
// Copyright IBM Corp. 2017,2018. All Rights Reserved.
// Node module: loopback-next
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

/**
* This is an internal script to set all non-labs packages to be private
*/
'use strict';

const path = require('path');
const fs = require('fs');

const Project = require('@lerna/project');

async function markNonLabsPackagesPrivate() {
const project = new Project(process.cwd());
const packages = await project.getPackages();

// Set `"private": "true"` in individual packages
for (const pkg of packages) {
const dir = path.relative(pkg.rootPath, pkg.location);
if (dir.startsWith('labs')) continue;
const data = readJsonFile(pkg.manifestLocation);
let modified = !data.private;
if (!modified) continue;
data.private = true;
writeJsonFile(pkg.manifestLocation, data, dir);
}
}

if (require.main === module) markNonLabsPackagesPrivate();

function readJsonFile(filePath) {
return JSON.parse(fs.readFileSync(filePath, 'utf-8'));
}

function writeJsonFile(filePath, data, dir) {
fs.writeFileSync(filePath, JSON.stringify(data, null, 2) + '\n', 'utf-8');
console.log('> %s has been marked as private.', dir || filePath);
}
3 changes: 2 additions & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@
"license": "MIT",
"dependencies": {
"fs-extra": "^8.0.0"
}
},
"private": true
}
3 changes: 2 additions & 1 deletion examples/express-composition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,6 @@
"@types/node": "^10.11.2",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
},
"private": true
}
3 changes: 2 additions & 1 deletion examples/greeter-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,6 @@
"@loopback/rest": "^1.11.1",
"chalk": "^2.4.2",
"debug": "^4.0.1"
}
},
"private": true
}
3 changes: 2 additions & 1 deletion examples/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@
"LoopBack",
"example",
"tutorial"
]
],
"private": true
}
3 changes: 2 additions & 1 deletion examples/log-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@
"@loopback/rest": "^1.11.1",
"chalk": "^2.3.2",
"debug": "^4.0.1"
}
},
"private": true
}
3 changes: 2 additions & 1 deletion examples/rpc-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@
"@types/node": "^10.11.2",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
},
"private": true
}
3 changes: 2 additions & 1 deletion examples/soap-calculator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,6 @@
"source-map-support": "^0.5.5",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
},
"private": true
}
3 changes: 2 additions & 1 deletion examples/todo-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@
"models",
"todo",
"HasMany"
]
],
"private": true
}
3 changes: 2 additions & 1 deletion examples/todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@
"CRUD",
"models",
"todo"
]
],
"private": true
}
25 changes: 25 additions & 0 deletions experimental/passport-adapter/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Copyright (c) IBM Corp. 2017,2019. All Rights Reserved.
Node module: @loopback/authentication
This project is licensed under the MIT License, full text below.

--------

MIT license

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
8 changes: 8 additions & 0 deletions experimental/passport-adapter/docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"content": [
"index.ts",
"src/index.ts",
"src/strategy-adapter.ts"
],
"codeSectionDepth": 4
}
Loading