Skip to content
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

Py #89

Merged
merged 2 commits into from
Aug 17, 2023
Merged

Py #89

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
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@architect/create",
"version": "4.2.2",
"version": "4.2.3-RC.0",
"description": "Idempotently initialize Architect projects",
"main": "src/index.js",
"bin": {
Expand All @@ -23,21 +23,21 @@
},
"license": "Apache-2.0",
"dependencies": {
"@architect/inventory": "~3.5.0",
"@architect/utils": "~3.1.7",
"@architect/inventory": "~3.6.0",
"@architect/utils": "~3.1.9",
"chalk": "4.1.2",
"lambda-runtimes": "~1.1.4",
"minimist": "~1.2.8"
},
"devDependencies": {
"@architect/eslint-config": "~2.1.1",
"cross-env": "~7.0.3",
"eslint": "~8.39.0",
"eslint": "~8.47.0",
"fs-extra": "~11.1.1",
"nyc": "~15.1.0",
"proxyquire": "^2.1.3",
"tap-arc": "^0.3.5",
"tape": "~5.6.3"
"tape": "~5.6.6"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
Expand Down
4 changes: 2 additions & 2 deletions test/integration/cli-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test('should build the basic templated python runtime project', async t => {
fs.emptyDirSync(tmp)
args('--no-install --runtime python')
await cli()
t.ok(existsSync(join(tmp, 'src', 'http', 'get-index', 'index.py')), 'src/http/get-index/index.py created')
t.ok(existsSync(join(tmp, 'src', 'http', 'get-index', 'lambda.py')), 'src/http/get-index/lambda.py created')
t.ok(readFileSync(join(tmp, 'app.arc'), 'utf-8').match(/runtime python/), '"runtime python" present somewhere in manifest')
})

Expand All @@ -47,7 +47,7 @@ test('should build the basic templated ruby runtime project', async t => {
fs.emptyDirSync(tmp)
args('--no-install --runtime ruby')
await cli()
t.ok(existsSync(join(tmp, 'src', 'http', 'get-index', 'index.rb')), 'src/http/get-index/index.rb created')
t.ok(existsSync(join(tmp, 'src', 'http', 'get-index', 'lambda.rb')), 'src/http/get-index/lambda.rb created')
t.ok(readFileSync(join(tmp, 'app.arc'), 'utf-8').match(/runtime ruby/), '"runtime ruby" present somewhere in manifest')
})

Expand Down