From b2f714279c7cd14662d29bbe7faa4200f826275b Mon Sep 17 00:00:00 2001 From: Judd Flamm Date: Tue, 18 Nov 2025 12:58:35 -0700 Subject: [PATCH] Updating license comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated copyright year range to 2015-2025 in all source files - Updated package.json license field to UNLICENSED - Total of 18 files updated 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .eslintrc.js | 1 + client/app.js | 1 + client/chart/chart.js | 1 + client/src/Native/Moment.js | 1 + client/src/Native/MomentJS.js | 1 + package.json | 2 +- server/app.js | 1 + server/config.js | 1 + server/index.js | 1 + server/lib/augment-deploy-with-pr.js | 1 + server/lib/github.js | 1 + server/lib/jenkins-to-deploy.js | 1 + server/lib/jenkins.js | 1 + server/models/deploys.js | 1 + server/routes/deploys.js | 1 + server/routes/helpers.js | 1 + server/scripts/drop.js | 1 + webpack.config.js | 1 + 18 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 672db0e..d70d882 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ module.exports = { "rules": { "indent": [ diff --git a/client/app.js b/client/app.js index 051afc8..28a4b81 100644 --- a/client/app.js +++ b/client/app.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ import moment from 'moment' window.moment = moment import Elm from './src/Main.elm' diff --git a/client/chart/chart.js b/client/chart/chart.js index 24d3740..fa42f25 100644 --- a/client/chart/chart.js +++ b/client/chart/chart.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import c3 from 'c3' diff --git a/client/src/Native/Moment.js b/client/src/Native/Moment.js index a1b2db4..9765632 100644 --- a/client/src/Native/Moment.js +++ b/client/src/Native/Moment.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ var MomentApi = function(Moment){ var getCurrent = function(){ return function(){ diff --git a/client/src/Native/MomentJS.js b/client/src/Native/MomentJS.js index 86280e9..3d46d6b 100644 --- a/client/src/Native/MomentJS.js +++ b/client/src/Native/MomentJS.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ //! moment.js //! version : 2.10.6 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors diff --git a/package.json b/package.json index 4841d6f..5d0909c 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "watch": "webpack --watch --config webpack.config.js" }, "author": "Jamison Dance (http://jamison.dance)", - "license": "ISC", + "license": "UNLICENSED", "dependencies": { "axios": "0.8.0", "babel-core": "6.3.17", diff --git a/server/app.js b/server/app.js index 1ad0b9d..558297e 100644 --- a/server/app.js +++ b/server/app.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import body from 'body-parser' diff --git a/server/config.js b/server/config.js index e43dcfd..265294b 100644 --- a/server/config.js +++ b/server/config.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import mongoose from 'mongoose' diff --git a/server/index.js b/server/index.js index 8e29901..94419ea 100644 --- a/server/index.js +++ b/server/index.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // Just an entry for babel-register require('babel-register') require('babel-polyfill') diff --git a/server/lib/augment-deploy-with-pr.js b/server/lib/augment-deploy-with-pr.js index 730acf0..9c8aaaa 100644 --- a/server/lib/augment-deploy-with-pr.js +++ b/server/lib/augment-deploy-with-pr.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow // We transform objects from jenkins in to living, breathing, real deploys diff --git a/server/lib/github.js b/server/lib/github.js index d7a0aae..b49af92 100644 --- a/server/lib/github.js +++ b/server/lib/github.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import axios from 'axios' diff --git a/server/lib/jenkins-to-deploy.js b/server/lib/jenkins-to-deploy.js index b3b6f17..998ab4c 100644 --- a/server/lib/jenkins-to-deploy.js +++ b/server/lib/jenkins-to-deploy.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import {get, last, map} from 'lodash' diff --git a/server/lib/jenkins.js b/server/lib/jenkins.js index 1f94154..c36c053 100644 --- a/server/lib/jenkins.js +++ b/server/lib/jenkins.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import axios from 'axios' diff --git a/server/models/deploys.js b/server/models/deploys.js index af27197..aef55b4 100644 --- a/server/models/deploys.js +++ b/server/models/deploys.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import axios from 'axios' diff --git a/server/routes/deploys.js b/server/routes/deploys.js index ed7177a..57172a9 100644 --- a/server/routes/deploys.js +++ b/server/routes/deploys.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import moment from 'moment' diff --git a/server/routes/helpers.js b/server/routes/helpers.js index e3690c2..13a8037 100644 --- a/server/routes/helpers.js +++ b/server/routes/helpers.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow export function handleError(handler: Function): Function { diff --git a/server/scripts/drop.js b/server/scripts/drop.js index e67e11f..dbd6300 100644 --- a/server/scripts/drop.js +++ b/server/scripts/drop.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ // @flow import chalk from 'chalk' diff --git a/webpack.config.js b/webpack.config.js index 733708a..2f0e1ea 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,3 +1,4 @@ +/* Copyright © 2015-2025 Kuali, Inc. - All Rights Reserved */ module.exports = { entry: './client/app.js',