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

Ansible-creator integration with extension #1000

Merged
merged 24 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e183be0
set up commands and menu items for ansible content-creator
priyamsahoo Oct 18, 2023
95eb92f
update command runner to remove colors in execution of command
priyamsahoo Oct 18, 2023
b9e09ee
add welcome page for ansible content-creator
priyamsahoo Oct 18, 2023
b27ed06
add init page for ansible content-creator
priyamsahoo Oct 18, 2023
9924788
add interface for ansible-creator init options
priyamsahoo Oct 18, 2023
dbd51b7
change refresh button type
priyamsahoo Oct 26, 2023
e6d2150
add feature to open folder selection dialog and abilty to open scaffo…
priyamsahoo Oct 26, 2023
6e1e789
add webpack config for the ansible-creator webviews
priyamsahoo Oct 26, 2023
9aa06f4
update class name
priyamsahoo Oct 26, 2023
fa368c8
re-organize extension.ts code
priyamsahoo Oct 26, 2023
a31e661
update dependencies and welcome message for ansible-creator
priyamsahoo Oct 26, 2023
84d7a78
Merge branch 'main' into webview
priyamsahoo Oct 26, 2023
65d0673
add codicon source files
priyamsahoo Oct 26, 2023
e913a52
add react as dev dependency to resolve peer dependency issue for webv…
priyamsahoo Oct 26, 2023
ce95536
update yarn.lock
priyamsahoo Oct 26, 2023
077f269
update yarn
priyamsahoo Oct 26, 2023
50606f2
update the files to package the webview elements properly
priyamsahoo Oct 30, 2023
ae87435
add 'coming soon' message for create and sample pages
priyamsahoo Oct 30, 2023
bee0fab
add proper name to the ansible-creator view
priyamsahoo Oct 30, 2023
35c59e5
upgrade yarn to 4.x
priyamsahoo Oct 30, 2023
0b819d5
fix linting issues
priyamsahoo Oct 30, 2023
7c26f78
ignore codicon.css during codespell check
priyamsahoo Oct 30, 2023
42b84aa
Merge branch 'main' into webview
priyamsahoo Oct 30, 2023
d081b5b
Merge branch 'main' into webview
priyamsahoo Oct 31, 2023
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
3 changes: 3 additions & 0 deletions .config/dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ cfgs
chromedriver
cmds
codespell
codicon
codicons
commitlint
Containerfile
contentmatch
Expand Down Expand Up @@ -70,6 +72,7 @@ mxschmitt
myuser
noheading
npmrc
nsible
Ondrej
OSTYPE
overridable
Expand Down
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ repos:
.yarn/.*|
.config/dictionary.txt|
CHANGELOG.md|
yarn.lock
yarn.lock|
media/codicons/codicon.css
)$
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before markdownlint and eslint
Expand All @@ -110,7 +111,7 @@ repos:
exclude: >
(?x)^(
jinja-language-configuration.json|
syntaxes/external/jinja.tmLanguage.json
syntaxes/external/jinja.tmLanguage.json|
)$
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.37.0
Expand Down
11 changes: 11 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,19 @@
!images/logo.png
!jinja-language-configuration.json
!media/style.css
!media/codicons/codicon.css
!media/codicons/codicon.ttf
!media/codicons/codicon.css
!media/contentCreator/icons/ansible-creator-create.png
!media/contentCreator/icons/ansible-creator-init.png
!media/contentCreator/icons/ansible-creator-sample.png
!media/contentCreator/icons/ansible-logo-red.png
!media/contentCreator/initPageStyle.css
!media/contentCreator/welcomePageStyle.css
!out/client/src/extension.js
!out/client/webview/apps/lightspeed/main.js
!out/client/webview/apps/contentCreator/welcomePageApp.js
!out/client/webview/apps/contentCreator/initPageApp.js
!out/server/src/server.js
!package.json
!package.nls.json
Expand Down
Loading