put everything in __sapper__

This commit is contained in:
Rich Harris
2018-09-30 14:55:54 -04:00
parent 4f6efbda79
commit a43764a971
8 changed files with 14 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
import { Store } from 'svelte/store.js';
import * as sapper from './__sapper__/client.js';
import * as sapper from '../__sapper__/client.js';
window.init = () => {
return sapper.start({

View File

@@ -9,7 +9,7 @@
<button class='prefetch' on:click='prefetch("blog/why-the-name")'>Why the name?</button>
<script>
import { prefetch } from '../__sapper__/client.js';
import { prefetch } from '../../__sapper__/client.js';
export default {
methods: {

View File

@@ -3,7 +3,7 @@ import { resolve } from 'url';
import express from 'express';
import serve from 'serve-static';
import { Store } from 'svelte/store.js';
import * as sapper from './__sapper__/server.js';
import * as sapper from '../__sapper__/server.js';
let pending;
let ended;

View File

@@ -1,4 +1,4 @@
import { files, shell, timestamp, routes } from './__sapper__/service-worker.js';
import { files, shell, timestamp, routes } from '../__sapper__/service-worker.js';
const ASSETS = `cachetimestamp`;

View File

@@ -37,10 +37,7 @@ describe('sapper', function() {
process.chdir(path.resolve(__dirname, '../app'));
// clean up after previous test runs
rimraf.sync('export');
rimraf.sync('build');
rimraf.sync('.sapper');
rimraf.sync('start.js');
rimraf.sync('__sapper__');
this.timeout(process.env.CI ? 30000 : 15000);
@@ -74,7 +71,7 @@ function testExport({ basepath = '' }) {
});
it('export all pages', () => {
const dest = path.resolve(__dirname, '../app/export');
const dest = path.resolve(__dirname, '../app/__sapper__/export');
// Pages that should show up in the extraction directory.
const expectedPages = [
@@ -181,10 +178,10 @@ function run({ mode, basepath = '' }) {
base = `http://localhost:${port}`;
if (basepath) base += basepath;
const dir = mode === 'production' ? 'build' : '.sapper';
const dir = mode === 'production' ? '__sapper__/build' : '__sapper__/dev';
if (mode === 'production') {
assert.ok(fs.existsSync('build/index.js'));
assert.ok(fs.existsSync('__sapper__/build/index.js'));
}
proc = require('child_process').fork(`${dir}/server.js`, {