Skip to content
This repository was archived by the owner on Jul 2, 2020. It is now read-only.

Commit 62bff4d

Browse files
committedSep 22, 2017
Release 4.0.0
1 parent 5e06cb2 commit 62bff4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+664
-334
lines changed
 

‎CONTRIBUTING.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Contributing to generator-oraclejet
2-
3-
*Copyright (c) 2014, 2017 Oracle and/or its affiliates
4-
The Universal Permissive License (UPL), Version 1.0*
5-
6-
**Pull requests are currently not being accepted for the Oracle JET project.**
7-
8-
We plan to provide this functionality in the future. At that time, you will need to follow [The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html)
9-
(OCA).
10-
11-
If you have ideas, comments, or issues related to generator, swing on by the [Oracle JET discussion forum.](https://community.oracle.com/community/development_tools/oracle-jet/generators)
1+
# Contributing to generator-oraclejet
2+
3+
*Copyright (c) 2014, 2017 Oracle and/or its affiliates
4+
The Universal Permissive License (UPL), Version 1.0*
5+
6+
**Pull requests are currently not being accepted for the Oracle JET project.**
7+
8+
We plan to provide this functionality in the future. At that time, you will need to follow [The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html)
9+
(OCA).
10+
11+
If you have ideas, comments, or issues to discuss, swing on by the [Oracle JET discussion forum.](https://community.oracle.com/community/development_tools/oracle-jet/generators)

‎Gruntfile.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
Copyright (c) 2015, 2017, Oracle and/or its affiliates.
3+
The Universal Permissive License (UPL), Version 1.0
4+
*/
5+
module.exports = function (grunt) {
6+
grunt.initConfig({
7+
});
8+
9+
10+
// Load grunt tasks from NPM packages
11+
require("load-grunt-tasks")(grunt);
12+
13+
// Merge sub configs
14+
var options = {
15+
config : {
16+
src : "build/generator.js"
17+
},
18+
pkg: grunt.file.readJSON("package.json")
19+
}
20+
var configs = require('load-grunt-configs')(grunt, options);
21+
grunt.config.merge(configs);
22+
23+
};
24+

0 commit comments

Comments
 (0)
This repository has been archived.