Skip to content

Commit

Permalink
Do not graft non-existing directory for distutils. Update version to …
Browse files Browse the repository at this point in the history
…0.1.2.
  • Loading branch information
Dmitri-Sintsov committed May 30, 2022
1 parent abecfb5 commit 98a8174
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
graft django_deno
graft rollup
11 changes: 8 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
-----------
Expand Down
2 changes: 1 addition & 1 deletion django_deno/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.1'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion django_deno/deno/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const httpPort = args['port'];

const apiStatus = {
"server": "Django deno server",
"version": "0.1.1",
"version": "0.1.2",
"pid": Deno.pid,
};

Expand Down
2 changes: 1 addition & 1 deletion django_deno/static/django-deno/settings.js
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;

0 comments on commit 98a8174

Please sign in to comment.