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

Feat/template #10

Merged
merged 30 commits into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a24a361
create json template
Si3rr4wow Nov 23, 2022
9d56f70
write json and yaml to bin postbuild
Si3rr4wow Nov 23, 2022
da193b4
Merge branch 'main' into feat/template
Si3rr4wow Nov 24, 2022
cc8be87
Update src/write-yaml-template.ts
Si3rr4wow Nov 24, 2022
64186f3
Update src/write-yaml-template.ts
Si3rr4wow Nov 24, 2022
7c9d32a
fix engines and declaration. neater build
Si3rr4wow Nov 25, 2022
e05074a
Merge branch 'main' into feat/template
robmorgan-tab Nov 28, 2022
a710e3c
it's alive!
Si3rr4wow Nov 28, 2022
4e05cc5
Merge branch 'feat/template' of github.com:theappbusiness/patios into…
Si3rr4wow Nov 28, 2022
35ea45f
deconflictify ts and eslint
Si3rr4wow Nov 28, 2022
73b77d4
Fix YAML content conversion
robmorgan-tab Nov 28, 2022
5362824
Remote TS definitions for old prompt library
robmorgan-tab Nov 28, 2022
611ef73
Make eslint ignore bin files
robmorgan-tab Nov 28, 2022
4e9072d
ditch post build, link yaml correctly
Si3rr4wow Nov 28, 2022
09a8245
Merge branch 'feat/template' of github.com:theappbusiness/patios into…
Si3rr4wow Nov 29, 2022
687877e
validate templates pre push
Si3rr4wow Nov 29, 2022
64a8126
banish fs and path to top
Si3rr4wow Dec 1, 2022
f5e2f10
remove spool, I didn't like that name
Si3rr4wow Dec 2, 2022
3e93353
Use import type for TS definition imports
robmorgan-tab Dec 19, 2022
fe9745d
Move node stub TS definitions
robmorgan-tab Dec 19, 2022
f264935
Fix cross-platform issues with validate-templates
robmorgan-tab Dec 20, 2022
ce4f7db
Add tests for mockify
robmorgan-tab Dec 20, 2022
e8d1c18
Separate format assertions for getTemplateFileStrings
robmorgan-tab Dec 20, 2022
de04a44
Ensure pretty output of JSON from getTemplateFileStrings
robmorgan-tab Dec 20, 2022
7990792
Reduce repetition in writeFileToBinFactory
robmorgan-tab Dec 20, 2022
219cd79
Merge pull request #15 from theappbusiness/dev/hexagonal-refactor
robmorgan-tab Dec 20, 2022
29917bb
Tidy up of write-file-to-bin
robmorgan-tab Dec 20, 2022
37fcd45
Add dev:quick command to bypass the wizard
robmorgan-tab Dec 20, 2022
15eab1f
Amend BinTargetPaths type for consistency
robmorgan-tab Dec 20, 2022
c314e4d
Write the boilerplate templates to a src directory
robmorgan-tab Dec 20, 2022
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
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module.exports = {
node: true,
},
extends: jsExtends,
ignorePatterns: ['**/node_modules'],
ignorePatterns: ['**/node_modules', 'bin'],
parserOptions: jsParserOptions,
plugins: jsPlugins,
root: true,
Expand Down
2 changes: 2 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
. "$(dirname "$0")/_/husky.sh"

npm run test
npm run build
npm run validate-templates
Loading