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

Refactor marko into its own repo #14803

Merged
merged 5 commits into from
May 6, 2021
Merged
Show file tree
Hide file tree
Changes from 4 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
13 changes: 4 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ executors:
class:
description: The Resource class
type: enum
enum: [ 'small', 'medium', 'large', 'xlarge' ]
enum: ['small', 'medium', 'large', 'xlarge']
default: 'medium'
working_directory: /tmp/storybook
docker:
Expand Down Expand Up @@ -177,12 +177,12 @@ jobs:
condition:
and:
- not:
equal: [ master, << pipeline.git.branch >> ]
equal: [master, << pipeline.git.branch >>]
- not:
equal: [ next, << pipeline.git.branch >> ]
equal: [next, << pipeline.git.branch >>]
steps:
- ensure-pr-is-labeled-with:
label: "run e2e extended test suite"
label: 'run e2e extended test suite'
- git-shallow-clone/checkout_advanced:
clone_options: '--depth 1 --verbose'
- attach_workspace:
Expand Down Expand Up @@ -347,11 +347,6 @@ jobs:
command: |
cd examples/ember-cli
yarn storybook --smoke-test --quiet
- run:
name: Run marko-cli (smoke test)
command: |
cd examples/marko-cli
yarn storybook --smoke-test --quiet
- run:
name: Run official-storybook (smoke test)
command: |
Expand Down
3 changes: 0 additions & 3 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,6 @@ object SmokeTests : BuildType({
cd ../ember-cli
yarn storybook --smoke-test --quiet

cd ../marko-cli
yarn storybook --smoke-test --quiet

cd ../official-storybook
yarn storybook --smoke-test --quiet

Expand Down
31 changes: 0 additions & 31 deletions app/marko/README.md

This file was deleted.

4 changes: 0 additions & 4 deletions app/marko/bin/build.js

This file was deleted.

3 changes: 0 additions & 3 deletions app/marko/bin/index.js

This file was deleted.

73 changes: 0 additions & 73 deletions app/marko/package.json

This file was deleted.

14 changes: 0 additions & 14 deletions app/marko/src/client/index.ts

This file was deleted.

3 changes: 0 additions & 3 deletions app/marko/src/client/preview/globals.ts

This file was deleted.

22 changes: 0 additions & 22 deletions app/marko/src/client/preview/index.ts

This file was deleted.

71 changes: 0 additions & 71 deletions app/marko/src/client/preview/render.ts

This file was deleted.

9 changes: 0 additions & 9 deletions app/marko/src/demo/Button.marko

This file was deleted.

32 changes: 0 additions & 32 deletions app/marko/src/demo/Welcome.marko

This file was deleted.

4 changes: 0 additions & 4 deletions app/marko/src/server/build.ts

This file was deleted.

21 changes: 0 additions & 21 deletions app/marko/src/server/framework-preset-marko.ts

This file was deleted.

4 changes: 0 additions & 4 deletions app/marko/src/server/index.ts

This file was deleted.

7 changes: 0 additions & 7 deletions app/marko/src/server/options.ts

This file was deleted.

1 change: 0 additions & 1 deletion app/marko/src/typings.d.ts

This file was deleted.

8 changes: 0 additions & 8 deletions app/marko/standalone.js

This file was deleted.

14 changes: 0 additions & 14 deletions app/marko/tsconfig.json

This file was deleted.

1 change: 0 additions & 1 deletion app/standalone.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ describe.each([
['ember'],
['html'],
['marionette'],
['marko'],
['mithril'],
['preact'],
['rax'],
Expand Down
Loading