Skip to content

Commit

Permalink
Ready for 5.0.0-beta.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mvsde committed Mar 18, 2019
1 parent 0f6337f commit 021a82f
Show file tree
Hide file tree
Showing 5 changed files with 12,801 additions and 79 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@



## 5.0.0-beta.10
2019-03-18

### Updated
- Dependencies

### Fixed
- No 'defer'-attribute on module scripts
- CSS import in JS for modern build
- 'defaults' browserslist env



## 5.0.0-beta.9
2019-02-19

Expand Down
64 changes: 41 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Framework for componentized front end development with Nunjucks, Sass, and JavaS
## Installation

```bash
# Yarn
yarn global add @pangolin/cli

# npm
npm install -g @pangolin/cli

# Yarn
yarn global add @pangolin/cli
```


Expand All @@ -30,28 +30,46 @@ pangolin init

## Usage

### Start dev server

```bash
# Start dev server
yarn dev
# or
# npm
npm run dev

# Build files for production
yarn build
# or
# Yarn
yarn dev
```

### Build files for production

```bash
# npm
npm run build

# Build for static file servers
yarn build:dev
# or
# Yarn
yarn build
```

### Build for static file servers

```bash
# npm
npm run build:dev

# Run linting
yarn lint:css
yarn lint:js
# or
# Yarn
yarn build:dev
```

### Lint CSS and JavaScript

```bash
# npm
npm run lint:css
npm run lint:js

# Yarn
yarn lint:css
yarn lint:js
```

For more information take a look at the [Pangolin docs](https://pangolinjs.org).
Expand All @@ -61,21 +79,21 @@ For more information take a look at the [Pangolin docs](https://pangolinjs.org).

```bash
# Build UI
yarn prepare
# or
npm run prepare
# or
yarn prepare

# Testing
yarn test:unit
# or
npm run test:unit
# or
yarn test:unit

# Linting
yarn lint:css
yarn lint:js
# or
npm run lint:css
npm run lint:js
# or
yarn lint:css
yarn lint:js
```


Expand Down
Loading

0 comments on commit 021a82f

Please sign in to comment.