chore: move to npm
This commit is contained in:
parent
f07bc15682
commit
5f82d79866
7 changed files with 12638 additions and 4146 deletions
23
.github/workflows/release.yml
vendored
23
.github/workflows/release.yml
vendored
|
@ -22,24 +22,25 @@ jobs:
|
|||
with:
|
||||
node-version: '12.x'
|
||||
|
||||
- name: Get yarn cache directory path
|
||||
id: yarn-cache-dir-path
|
||||
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||
- name: Get npm cache directory
|
||||
id: npm-cache-dir
|
||||
run: |
|
||||
echo "::set-output name=dir::$(npm config get cache)"
|
||||
|
||||
- uses: actions/cache@v2
|
||||
id: yarn-cache
|
||||
- uses: actions/cache@v3
|
||||
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
path: ${{ steps.npm-cache-dir.outputs.dir }}
|
||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
${{ runner.os }}-node-
|
||||
|
||||
- name: Install Dependencies
|
||||
run: yarn --frozen-lockfile
|
||||
if: steps.cache-yarn-cache.outputs.cache-hit != 'true' || steps.cache-node-modules.outputs.cache-hit != 'true'
|
||||
run: npm ci
|
||||
if: steps.cache-npm-cache.outputs.cache-hit != 'true' || steps.cache-node-modules.outputs.cache-hit != 'true'
|
||||
|
||||
- name: Build extension
|
||||
run: yarn build
|
||||
run: npm run build
|
||||
|
||||
- uses: lannonbr/vsce-action@master
|
||||
with:
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- '8'
|
||||
|
||||
script:
|
||||
- yarn test
|
|
@ -14,4 +14,4 @@ test/**
|
|||
tsconfig.json
|
||||
typings/**
|
||||
vsc-extension-quickstart.md
|
||||
yarn.lock
|
||||
package-lock.lock
|
||||
|
|
|
@ -9,24 +9,31 @@
|
|||
* GPG Tool
|
||||
|
||||
- [Contributing guidelines](#contributing-guidelines)
|
||||
- [Requirements:](#requirements)
|
||||
- [Installing and compiling source](#installing-and-compiling-source)
|
||||
- [Testing the theme](#testing-the-theme)
|
||||
- [Adding new Material Theme commands](#adding-new-material-theme-commands)
|
||||
- [Financial contributions](#financial-contributions)
|
||||
- [Credits](#credits)
|
||||
- [Contributors](#contributors)
|
||||
- [Backers](#backers)
|
||||
- [Sponsors](#sponsors)
|
||||
- [Requirements:](#requirements)
|
||||
- [Installing and compiling source](#installing-and-compiling-source)
|
||||
- [Testing the theme](#testing-the-theme)
|
||||
- [Adding new Material Theme commands](#adding-new-material-theme-commands)
|
||||
- [index.ts](#indexts)
|
||||
- [Example of `async` exported `function`](#example-of-async-exported-function)
|
||||
- [Example of `sync` exported `function`](#example-of-sync-exported-function)
|
||||
- [Using external "mini" modules](#using-external-mini-modules)
|
||||
- [Register the command](#register-the-command)
|
||||
- [Add to package.json](#add-to-packagejson)
|
||||
- [Build and run](#build-and-run)
|
||||
- [Test your command](#test-your-command)
|
||||
- [Adding new custom setting](#adding-new-custom-setting)
|
||||
- [Financial contributions](#financial-contributions)
|
||||
- [Credits](#credits)
|
||||
- [Contributors](#contributors)
|
||||
- [Backers](#backers)
|
||||
- [Sponsors](#sponsors)
|
||||
|
||||
## Installing and compiling source
|
||||
|
||||
First you will have to install node_modules through npm or yarn
|
||||
First you will have to install node_modules through npm
|
||||
|
||||
```shell
|
||||
npm install
|
||||
# or
|
||||
yarn install
|
||||
```
|
||||
|
||||
To compile to the source code, you have to execute the build task through visual studio code.
|
||||
|
|
12604
package-lock.json
generated
Normal file
12604
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -32,7 +32,7 @@
|
|||
"vscode": "^1.51.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "yarn cleanup && yarn build:ts && yarn build:generate-themes && yarn build:ui",
|
||||
"build": "run-s cleanup build:ts build:generate-themes build:ui",
|
||||
"cleanup": "rimraf build && rimraf dist",
|
||||
"lint": "eslint .",
|
||||
"build:ui": "node dist/scripts/ui/index.js",
|
||||
|
@ -188,6 +188,7 @@
|
|||
"eslint-config-xo-typescript": "0.31.0",
|
||||
"fs-extra": "9.0.1",
|
||||
"ncp": "2.0.0",
|
||||
"npm-run-all": "4.1.5",
|
||||
"standard-version": "9.0.0",
|
||||
"typescript": "4.1.3",
|
||||
"vscode": "1.1.37"
|
||||
|
|
Loading…
Reference in a new issue