Skip to content

Commit 97fda79

Browse files
Updated the theme name in other places
1 parent a112cdb commit 97fda79

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

assets/built/casper.js assets/built/source.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/built/casper.js.map assets/built/source.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

default.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
{{!-- Preload main styles and scripts for better performance --}}
1111
<link rel="preload" as="style" href="{{asset "built/screen.css"}}">
12-
<link rel="preload" as="script" href="{{asset "built/casper.js"}}">
12+
<link rel="preload" as="script" href="{{asset "built/source.js"}}">
1313

1414
{{!-- Theme assets - use the {{asset}} helper to reference styles & scripts, this will take care of caching and cache-busting automatically --}}
1515
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}">
@@ -58,7 +58,7 @@
5858
{{/is}}
5959

6060
{{!-- Scripts - handle responsive videos, infinite scroll, and navigation dropdowns --}}
61-
<script src="{{asset "built/casper.js"}}"></script>
61+
<script src="{{asset "built/source.js"}}"></script>
6262

6363
{{!-- Ghost outputs required functional scripts with this tag, it should always be the last thing before the closing body tag --}}
6464
{{ghost_foot}}

gulpfile.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const autoprefixer = require('autoprefixer');
1818
const cssnano = require('cssnano');
1919
const easyimport = require('postcss-easy-import');
2020

21-
const REPO = 'TryGhost/Casper';
22-
const REPO_READONLY = 'TryGhost/Casper';
21+
const REPO = 'TryGhost/Source';
22+
const REPO_READONLY = 'TryGhost/Source';
2323
const CHANGELOG_PATH = path.join(process.cwd(), '.', 'changelog.md');
2424

2525
function serve(done) {
@@ -63,7 +63,7 @@ function js(done) {
6363
'assets/js/lib/*.js',
6464
'assets/js/*.js'
6565
], {sourcemaps: true}),
66-
concat('casper.js'),
66+
concat('source.js'),
6767
uglify(),
6868
dest('assets/built/', {sourcemaps: '.'}),
6969
livereload()
@@ -128,7 +128,7 @@ exports.release = async () => {
128128
const compatibleWithGhost = result.compatibleWithGhost;
129129

130130
const releasesResponse = await releaseUtils.releases.get({
131-
userAgent: 'Casper',
131+
userAgent: 'Source',
132132
uri: `https://api.github.com/repos/${REPO_READONLY}/releases`
133133
});
134134

@@ -158,7 +158,7 @@ exports.release = async () => {
158158
preRelease: false,
159159
tagName: 'v' + newVersion,
160160
releaseName: newVersion,
161-
userAgent: 'Casper',
161+
userAgent: 'Source',
162162
uri: `https://api.github.com/repos/${REPO}/releases`,
163163
github: {
164164
token: githubToken

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
],
3737
"repository": {
3838
"type": "git",
39-
"url": "https://github.com/TryGhost/Casper.git"
39+
"url": "https://github.com/TryGhost/Source.git"
4040
},
41-
"bugs": "https://github.com/TryGhost/Casper/issues",
42-
"contributors": "https://github.com/TryGhost/Casper/graphs/contributors",
41+
"bugs": "https://github.com/TryGhost/Source/issues",
42+
"contributors": "https://github.com/TryGhost/Source/graphs/contributors",
4343
"devDependencies": {
4444
"@tryghost/release-utils": "0.8.1",
4545
"autoprefixer": "10.4.7",

0 commit comments

Comments
 (0)