Compare commits

...

5 commits

Author SHA1 Message Date
Kruglov Kirill
7a14a31cc8
Merge pull request #3 from cmath10/master
ci: Tests pipeline
2021-11-24 14:29:49 +03:00
Zaytsev Kirill
c19d1a737d ci: Tests pipeline 2021-11-24 14:19:05 +03:00
kruglov
aaa79bce9a chore(release): 0.0.2 2021-11-18 18:26:20 +03:00
Kruglov Kirill
8d1a19e8b8
Merge pull request #2 from cmath10/master
fix: main entry
2021-11-18 18:25:44 +03:00
Zaytsev Kirill
7fb33aa90f fix: main entry 2021-11-18 17:59:52 +03:00
5 changed files with 33 additions and 3 deletions

16
.github/workflows/github-actions.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Tests
on: [push]
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- run: echo "Using branch ${{ github.ref }} for repository ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v2
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- run: chmod 777 .
- run: docker-compose pull
- run: docker-compose run --rm node yarn install
- run: docker-compose run --rm node yarn test

View file

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.0.2](https://github.com/retailcrm/vue-formulario/compare/v0.0.1...v0.0.2) (2021-11-18)
### Fixes
* main entry ([7fb33aa](https://github.com/retailcrm/vue-formulario/commit/7fb33aa90f1911848544c37d43557c3994b51094))
### 0.0.1 (2021-11-18)

8
docker-compose.yml Normal file
View file

@ -0,0 +1,8 @@
version: '3.6'
services:
node:
image: node:12-alpine
user: node
volumes:
- ./:/var/www/vue-i18n-loader
working_dir: /var/www/vue-i18n-loader

View file

@ -1 +0,0 @@
module.exports

View file

@ -1,9 +1,9 @@
{
"name": "@retailcrm/vue-i18n-loader",
"version": "0.0.1",
"version": "0.0.2",
"description": "Webpack loader for vue i18n custom block",
"license": "MIT",
"main": "index.js",
"main": "lib/loader.js",
"author": "RetailDriverLLC <integration@retailcrm.ru>",
"repository": {
"type": "git",