Skip to content

new vue 😎 #55

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

Closed
wants to merge 14 commits into from
Closed
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
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'extends': 'plugin:vue/essential'
}
17 changes: 11 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@
# Github can only use master branch as the source for user/organization pages.
# https://help.github.com/en/github/working-with-github-pages/about-github-pages#user-and-organization-pages-sites
# What a dumb limitation (unlike Gitlab)
# This workflow does `yarn build` on the 'vue' branch then pushes the `dist' folder to 'amster' branch
# This workflow does `yarn build` on the 'vue' branch then pushes the `dist' folder to 'master' branch
# (btw Github actions was also stolen from Gitlab)
# (btw Github is not open source unlike Gitlab, which is ironic)
# (btw Github was bought out by Microsoft, unlike Gitlab)

# this is useless
# I wanted to set the default branch using workflow-level env, as the documentation describes,
# https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables
# yet Github doesn't support even this most basic feature of variable cascading! What a joke.
# https://github.saobby.my.eu.orgmunity/t/how-to-set-and-access-a-workflow-variable/17335/6
env:
source_branch: 'vue'
source_branch: vue

name: CI
name: pages

# specify workflow to run when pushed to 'vue' branch
# or pull request targeting 'vue' branch
on:
push:
branches:
- ${{ source_branch }}
- 'vue'
pull_request:
branches:
- ${{ source_branch }}
- 'vue'

jobs:
build:
Expand Down Expand Up @@ -59,7 +64,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
# only run deploy if trigger is source branch
if: github.ref == ${{ format('refs/heads/{0}', env.source_branch ) }}
if: github.ref == 'refs/heads/vue'
steps:
- name: Get artifcats from build
uses: actions/download-artifact@v2
Expand Down
40 changes: 35 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
.DS_Store
run_server.sh
.sass-cache/*
_site/
.idea/
.DS_STORE
scripts/flow/*/.flowconfig
*~
*.pyc
.grunt
_SpecRunner.html
__benchmarks__
build/
remote-repo/
coverage/
.module-cache
fixtures/dom/public/react-dom.js
fixtures/dom/public/react.js
test/the-files-to-test.generated.js
*.log*
chrome-user-data
*.sublime-project
*.sublime-workspace
.idea
*.iml
.vscode
*.swp
*.swo

packages/react-devtools-core/dist
packages/react-devtools-extensions/chrome/build
packages/react-devtools-extensions/chrome/*.crx
packages/react-devtools-extensions/chrome/*.pem
packages/react-devtools-extensions/firefox/build
packages/react-devtools-extensions/firefox/*.xpi
packages/react-devtools-extensions/firefox/*.pem
packages/react-devtools-extensions/shared/build
packages/react-devtools-inline/dist
packages/react-devtools-shell/dist
node_modules
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion CNAME

This file was deleted.

8 changes: 0 additions & 8 deletions Dockerfile

This file was deleted.

8 changes: 0 additions & 8 deletions Gemfile

This file was deleted.

265 changes: 0 additions & 265 deletions Gemfile.lock

This file was deleted.

Loading