-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not graft non-existing directory for distutils. Update version to …
…0.1.2.
- Loading branch information
1 parent
abecfb5
commit 98a8174
Showing
5 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
graft django_deno | ||
graft rollup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ django-deno | |
.. _SystemJS: https://github.com/systemjs/systemjs | ||
.. _terser: https://terser.org | ||
|
||
`Deno`_ front-end integration for `Django`_, version 0.1.1. | ||
`Deno`_ front-end integration for `Django`_, version 0.1.2. | ||
|
||
* Currently only `drollup`_ / `terser`_ are supported, the deno server may be extended to support any of deno api, if | ||
applicable. | ||
|
@@ -58,15 +58,20 @@ In Windows run PowerShell then invoke:: | |
``DENO_INSTALL`` environment variable specifies directory where `Deno`_ is installed. | ||
|
||
* In case currently installed `Deno`_ version is older than 1.19, please use ``deno upgrade`` command to install the | ||
latest `Deno`_ version. | ||
newer `Deno`_ version. Older version has no ``deno vendor`` command. | ||
|
||
* Currently `drollup`_ Deno package does not support Deno version newer than 1.21. To overcome that limitation, please use | ||
Deno version 1.21:: | ||
deno upgrade --version 1.21.3 | ||
|
||
To install the development version of ``django_deno`` in python3 ``virtualenv``:: | ||
|
||
python -m pip install -U git+https://github.com/Dmitri-Sintsov/django-deno.git | ||
|
||
To install the stable version of ``django_deno`` in python3 ``virtualenv``:: | ||
|
||
python -m pip install -U git+https://github.com/Dmitri-Sintsov/[email protected].1 | ||
python -m pip install -U git+https://github.com/Dmitri-Sintsov/[email protected].2 | ||
|
||
Description | ||
----------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.1.1' | ||
__version__ = '0.1.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Import this module to the project to test automatic importmap generation for virtualenv library modules static file finders. | ||
|
||
let DjangoDenoSettings = { | ||
version: '0.1.1', | ||
version: '0.1.2', | ||
}; | ||
|
||
export default DjangoDenoSettings; |