Skip to content

Commit

Permalink
fix: Update to latest version of vsce to hopefully fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
mskelton authored Aug 19, 2021
1 parent aa4a1bf commit 409aac8
Show file tree
Hide file tree
Showing 12 changed files with 19,267 additions and 8,517 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ jobs:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Format
run: |
yarn --immutable
yarn prettier --write .
node-version: 14.x
- run: npm ci
- run: npx prettier --write .
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn --immutable
- run: yarn eslint .
- run: yarn semantic-release
- uses: actions/setup-node@v2
with:
node-version: 14.x
- run: npm ci
- run: npx eslint .
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,3 @@ node_modules/
dist/
themes/*
!themes/.gitkeep

# Yarn releases, plugins, and dependency cache
.yarn/*
!.yarn/releases
!.yarn/patches
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
4 changes: 0 additions & 4 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
examples/
dist/
themes/

# Yarn auto-generated files
.yarn/
.yarnrc.yml
2 changes: 0 additions & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
.github/
.vscode/
.yarn/
docs/
examples/
generator/
node_modules/
dist/**/*.map
src/
themes/.gitkeep
.yarnrc.yml
.all-contributorsrc
.eslintignore
.gitignore
Expand Down
29 changes: 0 additions & 29 deletions .yarn/plugins/@yarnpkg/plugin-outdated.cjs

This file was deleted.

55 changes: 0 additions & 55 deletions .yarn/releases/yarn-2.4.1.cjs

This file was deleted.

7 changes: 0 additions & 7 deletions .yarnrc.yml

This file was deleted.

4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Run the following commands to clone the repository for this theme and install al
```bash
git clone [email protected]:one-dark/vscode-one-dark-theme.git
cd vscode-one-dark-theme
yarn
npm install
```

## Testing the theme
Expand All @@ -19,7 +19,7 @@ To run the theme, open the project in VS Code and run the `Debug: Start Debuggin
This project is configured to allow live theme reloading using `nodemon`. This will update the theme colors in the test instance to allow you to immediately see how your changes will look without having to restart the test instance. To utilize this feature, run the following command before you start debugging.

```bash
yarn theme:watch
npm run theme:watch
```

## Color Guidelines
Expand Down
Loading

0 comments on commit 409aac8

Please sign in to comment.