Commit 062f57bb authored by iSergio's avatar iSergio
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+8 −0
Original line number Diff line number Diff line
.idea
*.iml
.DS_Store
.vscode
.classpath
.project
.settings
*.versionsBackup
+24 −0
Original line number Diff line number Diff line
{
  "data": {
    "created": "2017-06-14T18:55:48Z",
    "email": "Sencha@localhost",
    "expires": "2022-06-15T00:00:00Z",
    "name": "Sencha",
    "uuid": "1d6b0d9c-3333-4e65-885f-5b07a1fc3198"
  },
  "publicKey": {
    "algorithm": "RSA",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuVOK++/XG6EezpsY35G9kNXOKZTeeEVFxuxZSY5fhjzKv2X1GGb3WhQpbf1UEifm2HIbbnP4h6rJTLvnQBSEVsjSYe8KFkCHKR3KM0L9RGS54eef+qlOY3/aqDj67EfFWgNSut+BzG9FbqNDM7nHOxGwp/4PyQTXrrAvz/QtmNCU4OpWYdzHIuYorWuUlgQFb3znKk6Y2s+ABpUWsrQs8eIVcKbKNVkdvlsHL3sTG4eLn6Q35+B3LXTz92nGq8YHhuK+VtqeIuY5/5LG5TseAuCxp9uLal7uw2FF7WCm8lDyuyVRi8jK3RFJdb/VYCC58bOgPDJq0JfeVVJm6are7QIDAQAB"
  },
  "signatures": [
    {
      "name": "Sencha",
      "uuid": "1d6b0d9c-3333-4e65-885f-5b07a1fc3198",
      "created": "2017-06-14T18:55:49Z",
      "algorithm": "SHA1withRSA",
      "nonce": "SIBax7AeKL4\u003d",
      "signature": "NDhZfpYhRDHp6L+peeel+c2YajzMdrEDOOhwO0js7F6UuKMR0NiK6AfB+5bG/6wlZgFoso7NTfLkV45L13vZnBpM86VKMO7ihZsykgMl3KSONvwfl/I62bHuSNACIg2y86esnuztdgpOOOQbXravMZ84iTeUnyCCaZYl/CVGE861N3cszpDzugr+qBleK0e1AqOJaH2KAvNPI4ls3mkPj8f4u+hLpvYvNjxWj11/CIQACSwefAmlQ7gH0/v5SkQMnlcF5rFnQ2UZ8QBqPkoVqHBWjs9cVVXOveD+roaYvHGkYU/hfFiLc8KGgR4nqVvD+oYmuj3QHvQQ0uBPJgdJ2g\u003d\u003d"
    }
  ]
}
 No newline at end of file
+11 −0
Original line number Diff line number Diff line
<project basedir=".">
    <!--
    If framework.config.dir is already set, this next task will do nothing and
    the original value will remain... but if framework.config.dir is not yet
    defined, we are running in a workspace sans framework and so we need to go
    directly to the plugin base from cmd.config.dir instead.
    -->
    <property name="framework.config.dir" value="${cmd.config.dir}"/>

    <import file="${framework.config.dir}/plugin.xml"/>
</project>
+23 −0
Original line number Diff line number Diff line
# -----------------------------------------------------------------------------
# This file contains configuration options that apply to all applications in
# the workspace. By convention, these options start with "workspace." but any
# option can be set here. Options specified in an application's sencha.cfg will
# take priority over those values contained in this file. These options will
# take priority over configuration values in Sencha Cmd or a framework plugin.

#------------------------------------------------------------------------------
# This is the folder for build outputs in the workspace

workspace.build.dir=${workspace.dir}/build

#------------------------------------------------------------------------------
# This folder contains all generated and extracted packages.

workspace.packages.dir=${workspace.dir}/packages

# =============================================================================
# Customizations go below this divider to avoid merge conflicts on upgrade
# =============================================================================

ext.dir=${workspace.dir}
workspace.subpkg.prefix=${framework.dir}/build/${toolkit.name}

Readme.md

0 → 100644
+18 −0
Original line number Diff line number Diff line
# Sencha Ext JS

This is the Sencha Ext JS Framework Package, or just "ext" for short.

## Installation

Install [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).

```bash
npm install --save @extjs/ext
```

## Dependencies

This will need [@extjs/ext-build](https://github.com/sencha/extjs-reactor/tree/2.0.x-dev/packages/ext-build) to work.

This will be included if you generate the application using [@extjs/ext-gen](https://github.com/sencha/extjs-reactor/tree/2.0.x-dev/packages/ext-gen)