Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 37 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# -------------------------------------------------
# OS files
# -------------------------------------------------
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
Expand All @@ -24,18 +35,18 @@ var/
.installed.cfg
*.egg
poetry.lock

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
# -------------------------------------------------
# Instrumentation and tooling
# -------------------------------------------------
htmlcov/
.tox/
.coverage
Expand All @@ -49,44 +60,50 @@ coverage.xml
# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask instance folder
instance/

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

# Node modules
node_modules/
node_modules*

# -------------------------------------------------
# Users Environment
# -------------------------------------------------
.lock-wscript
.idea
.installed.cfg
.vagrant
.anaconda
Vagrantfile.local
.env
/local
local.py
*.sublime-project
*.sublime-workspace
.vscode

# -------------------------------------------------
# Your own project's ignores
# -------------------------------------------------
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/carbon
8
Empty file removed .pyenv
Empty file.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
version: ~> 1.0
os: linux
dist: bionic
language: python
cache:
pip: true
directories:
- .tox
matrix:
- node_modules
jobs:
include:
- env: PYVER=py36
python: 3.6
- env: PYVER=py37
python: 3.7
- env: PYVER=py38
python: 3.8
- language: node_js
install:
- npm install --no-optional --no-audit --progress=false
script:
- npm run build
install:
- pip install poetry tox
script:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Django pattern library

[![PyPI](https://img.shields.io/pypi/v/django-pattern-library.svg)](https://pypi.org/project/django-pattern-library/) [![PyPI downloads](https://img.shields.io/pypi/dm/django-pattern-library.svg)](https://pypi.org/project/django-pattern-library/) [![Travis](https://travis-ci.com/torchbox/django-pattern-library.svg?branch=master)](https://travis-ci.com/torchbox/django-pattern-library) [![Total alerts](https://img.shields.io/lgtm/alerts/g/torchbox/django-pattern-library.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/torchbox/django-pattern-library/alerts/) [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/torchbox/django-pattern-library.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/torchbox/django-pattern-library/context:python)
[![PyPI](https://img.shields.io/pypi/v/django-pattern-library.svg)](https://pypi.org/project/django-pattern-library/) [![PyPI downloads](https://img.shields.io/pypi/dm/django-pattern-library.svg)](https://pypi.org/project/django-pattern-library/) [![Travis](https://travis-ci.com/torchbox/django-pattern-library.svg?branch=master)](https://travis-ci.com/torchbox/django-pattern-library) [![Total alerts](https://img.shields.io/lgtm/alerts/g/torchbox/django-pattern-library.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/torchbox/django-pattern-library/alerts/)

A module for Django that helps you to build pattern libraries and follow the
[Atomic design](http://bradfrost.com/blog/post/atomic-web-design/) methodology.
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "webpack-sass",
"version": "1.0.0",
"name": "django-attern-library",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"license": "UNLICENSED",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
Expand Down