-
-
Notifications
You must be signed in to change notification settings - Fork 907
build: update scaffolding for creating unary math iterator packages #2927
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
b301b79
chore: add runner script to create packages
gunjjoshi e065b72
Merge branch 'stdlib-js:develop' into math-iter-unary
gunjjoshi 6522b2b
docs: update scaffold.sh
gunjjoshi ac6aacb
chore: update scaffold.sh
gunjjoshi d3c7b42
chore: update runner.js and scaffold.sh
gunjjoshi 34d465c
Update scaffold.sh
gunjjoshi ae524f5
docs: update scaffold.sh
gunjjoshi 7c65bac
Merge branch 'math-iter-unary' of https://github.com/gunjjoshi/stdlib…
gunjjoshi 13cf609
chore: add keywords in the names array
gunjjoshi abbf3bc
Update lib/node_modules/@stdlib/_tools/scaffold/math-iter-unary/scrip…
gunjjoshi 6067078
chore: move capitalizing logic to runner.js
gunjjoshi 7079976
Apply suggestions from code review
kgryte 2a94c9e
Apply suggestions from code review
kgryte 3c0879e
refactor: fix environment variable logic and support specifying the b…
kgryte 8be8688
style: remove unused variables
kgryte d780577
refactor: add support for specifying JavaScript return type
kgryte e0301aa
fix: update property access
kgryte c43e064
fix: update env var concat
kgryte ff2c1a8
refactor: clean up env var concat
kgryte d0448bb
refactor: update keywords and assertion methods
kgryte 4acf56d
refactor: update default pkg desc
kgryte 053de2c
fix: update link and handle decimal values
kgryte e4ed66d
refactor: add decimals for floating-point parameter values
kgryte 474653b
style: disable lint rule
kgryte b40c84a
refactor: add comment indicating that files are generated
kgryte eae6a5c
build: don't overwrite by default
kgryte 00eda1b
fix: update require path and ensure numeric type
kgryte File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
lib/node_modules/@stdlib/_tools/scaffold/math-iter-unary/scripts/runner.js
This file contains hidden or 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,90 @@ | ||
#!/usr/bin/env node | ||
|
||
/** | ||
* @license Apache-2.0 | ||
* | ||
* Copyright (c) 2024 The Stdlib Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
// MODULES // | ||
|
||
var resolve = require( 'path' ).resolve; | ||
var shell = require( 'child_process' ).execSync; // eslint-disable-line node/no-sync | ||
var existsSync = require( '@stdlib/fs/exists' ).sync; | ||
var objectKeys = require( '@stdlib/utils/keys' ); | ||
var uppercase = require( '@stdlib/string/base/uppercase' ); | ||
var rootDir = require( '@stdlib/_tools/utils/root-dir' ); | ||
var log = require( '@stdlib/console/log' ); | ||
var DATA = require( './data.json' ); | ||
|
||
|
||
// VARIABLES // | ||
|
||
var CREATE_ONLY = 1; | ||
var SCAFFOLD_SCRIPT = resolve( __dirname, 'scaffold.sh' ); | ||
var ROOT_DIR = resolve( rootDir(), 'lib', 'node_modules' ); | ||
|
||
|
||
// MAIN // | ||
|
||
/** | ||
* Main execution sequence. | ||
* | ||
* @private | ||
*/ | ||
function main() { | ||
var names; | ||
var keys; | ||
var envs; | ||
var str; | ||
var cmd; | ||
var p; | ||
var k; | ||
var v; | ||
var o; | ||
var i; | ||
var j; | ||
|
||
keys = objectKeys( DATA ); | ||
for ( i = 0; i < keys.length; i++ ) { | ||
o = DATA[ keys[ i ] ]; | ||
p = resolve( ROOT_DIR, '@stdlib/math/iter/special', o.alias, 'package.json' ); | ||
if ( existsSync( p ) ) { | ||
if ( CREATE_ONLY ) { | ||
log( 'Package already exists. Skipping @%s...', 'stdlib/math/iter/special/' + o.alias ); | ||
continue; | ||
} | ||
log( 'Updating package: @%s...', 'stdlib/math/iter/special/' + o.alias ); | ||
} else { | ||
log( 'Creating package: @%s...', 'stdlib/math/iter/special/' + o.alias ); | ||
} | ||
names = objectKeys( o ); | ||
envs = []; | ||
for ( j = 0; j < names.length; j++ ) { | ||
k = names[ j ]; | ||
v = o[ k ]; | ||
str = uppercase( k ); | ||
str += '='; | ||
str += '\'' + v + '\''; | ||
envs.push( str ); | ||
} | ||
kgryte marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
cmd = envs.join( ' ' ) + ' . ' + SCAFFOLD_SCRIPT; | ||
shell( cmd ); | ||
kgryte marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
|
||
main(); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.