Skip to content

Commit

Permalink
feat: separate plugin-templates from this repository (#520)
Browse files Browse the repository at this point in the history
* feat: extracted the template library

Changed the monorepo to a single repo. The plugin has been moved to
https://github.com/salesforcecli/plugin-templates.

BREAKING CHANGE: The plugin is no longer available here.
  • Loading branch information
randi274 authored Nov 14, 2022
1 parent 7c7a1ee commit 2722a2d
Show file tree
Hide file tree
Showing 201 changed files with 3,795 additions and 24,127 deletions.
292 changes: 0 additions & 292 deletions .circleci/config.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn commitlint --edit
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn lint && yarn pretty-quick --staged
4 changes: 2 additions & 2 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn build && yarn test
12 changes: 3 additions & 9 deletions .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@
"statements": 75,
"functions": 75,
"branches": 75,
"reporter": [
"text",
"lcov"
],
"reporter": ["text", "lcov"],
"cache": false,
"include": [
"lib**",
"src**"
]
}
"include": ["lib**", "src**"]
}
38 changes: 0 additions & 38 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 9229,
"skipFiles": ["<node_internals>/**"]
},
{
"name": "Run All Tests",
"type": "node",
Expand All @@ -19,37 +12,6 @@
"runtimeExecutable": "yarn",
"runtimeArgs": ["test"],
"preLaunchTask": "Compile"
},
{
"type": "node",
"request": "launch",
"name": "Run Current Test",
"program": "${workspaceFolder}/packages/plugin-templates/node_modules/mocha/bin/_mocha",
"cwd": "${workspaceFolder}/packages/plugin-templates",
"args": ["--inspect", "--no-timeouts", "--colors", "${file}"],
"env": {
"NODE_ENV": "development",
"SFDX_ENV": "development"
},
"sourceMaps": true,
"smartStep": true,
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": "Compile"
},
{
"type": "node",
"request": "launch",
"name": "Run Current Test Without Compile",
"program": "${workspaceFolder}/packages/plugin-templates/node_modules/mocha/bin/_mocha",
"cwd": "${workspaceFolder}/packages/plugin-templates",
"args": ["--inspect", "--no-timeouts", "--colors", "${file}"],
"env": {
"NODE_ENV": "development",
"SFDX_ENV": "development"
},
"sourceMaps": true,
"smartStep": true,
"internalConsoleOptions": "openOnSessionStart"
}
]
}
Loading

0 comments on commit 2722a2d

Please sign in to comment.